我的数据库中有图像链接,例如-http://accessories.us.dell.com/sna/images/products/large/330-5288.jpg 上面的图像链接在我的数据库的一个字段中。我不知道如何使用PHP在我的html页面中显示它。任何人都可以帮忙吗? thnks
答案 0 :(得分:1)
您是否已从数据库中提取了URL?如果是这样,只需输出
<?php
# code that fetches data from DB goes here...
?>
<img src="<?php echo $url; ?>" />
答案 1 :(得分:1)
从数据库中选择图像链接。现在设置从数据库中选择的图像src = value。
<img src="<?php echo $url; ?>" />
干杯... !!!
答案 2 :(得分:0)
<?php
$sql = "SELECT your_image FROM your_table WHERE your_conditions_here";
$result = mysql_query($sql);
while ($row = mysql_fetch_assoc($result)) {
?>
<img src="<?php echo $row['your_image']; ?>" />
<?php
}
?>
答案 3 :(得分:0)
选择url,它将取决于你的sql语句,所以如果你有很多url,请创建变量数组然后存储url然后输出它。但在我的例子中,我假设你只有一个网址,然后我把它放在变量$ url上,这样就可以显示它了
<?php
$query = "SELECT * FROM tbl_name";
$result = myqsl_query($query);
while($row = mysql_fetch_assoc($result)){
$url = $row['url']
}
?>
<img src="<?php echo $url; ?>" />