<?php
$con=mysql_connect ("xxx","xxx","xxx");
mysql_select_db("dbhappps",$con);
@$sql="select * from tbl_image where id='4' and status='0'";
@$query=mysql_query($sql);
while(@$row=mysql_fetch_array($query))
{
@$image=$row ['photo'];
echo $image
?>
<img src="/image/<?php echo $image; ?>" width="320" height="480">
<?php
}
?>
echo $image 给了我正确的文件名,所以我要么没有正确引用 /image (图像文件夹在我的根目录中)文件夹,要么是浏览器问题?我正在谷歌浏览器中测试它。任何提示都会很棒。