我要顯示的圖像,存儲在一個表中,PHP數據庫,表名是「禮品」和包含圖像的列被命名爲「圖片」如何顯示存儲在PHPMyAdmin,Database ..以及其他表列的多個圖像?
(我知道這是不是一個好方法,但我需要做)
現在,當我運行下面的代碼:
<!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>
我得到一個表格中顯示BU其命名列有奇怪的價值觀,圖片:
請告訴我什麼是錯誤,以及如何解決這個:(我非常需要這樣做。
您接受「根本不顯示內容,因爲PMA無法做到它意味着「作爲解決它的一種方式? –