我有我的 sql 数据库,其表内容为 [image varchar(22)] 将图像的值存储为图像的 url 位置为 images/tree.jpg
如何用php检索它
<?php
$link=mysql_connect("localhost","root","");
mysql_select_db("bookstore");
$qry="select * from books where btype='$cat'";
$res=mysql_query($qry,$link);
while($row=mysql_fetch_array($res));
{
print " <img src=http://localhost/zack/PROJECT/".$row['image'] ." width=323px >";
}
?>