我想显示存储在表格中的图像,在 PHP 数据库中,表格名称是“ gifts ”,包含图像的列被命名为“ pics ”
(我知道这不是一个好方法,但我需要这样做)
现在当我运行以下代码时:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org /TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>
<body>
<?php
$con = mysql_connect("localhost","root","");
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db("sendemotions", $con);
$result = mysql_query("SELECT * FROM gifts");
echo "<table border='1'>
<tr>
<th>Item Picture/th>
<th>Name Of Item</th>
<th>Item Type</th>
<th>Item Price</th>
</tr>";
while($row = mysql_fetch_array($result))
{
echo "<tr>";
echo "<td>" . $row['pics'] . "</td>";
echo "<td>" . $row['g_name'] . "</td>";
echo "<td>" . $row['g_price'] . "</td>";
echo "<td>" . $row['g_type'] . "</td>";
echo "</tr>";
}
echo "</table>";
mysql_close($con);
?>
</body>
</html>
我得到一个显示的表格,但它在名为图片的列中有奇怪的值:
请告诉我错误是什么以及如何解决这个问题:(我非常需要这样做。