我有一个脚本,其中URL将由管理面板更新,并存储到MySql数据库中,
如何将以下代码转换为php并在href位置进行数据库调用或
我必须使用任何JavaScript来解决这个问题
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>H2</title>
</head>
<body>
<!--Link Of Product-->
<a href="DYNAMIC LINK URL" target="_self">
<!--Image link-->
<img src="images/h2.jpg" width="190" height="220" style="padding:0px 0px 0px 0px;">
</body>
</html>
答案 0 :(得分:1)
如果您从数据库中读取链接,则可以按以下步骤操作。考虑到您没有使用MVC样式框架,这个例子是考虑到的。
<?php
$link = mysql_fetch_assoc(mysql_query("SELECT url FROM admin"));
?>
<a href="<?php echo $link['url']; ?>" target="_self">