当通过搜索获得公司详细信息时,我正在尝试访问每家公司的图像。这是我编码的一部分。
<?php
$result = mysql_query("SELECT * FROM enquiry where product like '%$title%' ") or die("error");
$found = mysql_num_rows($result);
if ($found > 0) {
while ($row = mysql_fetch_array($result)) {
echo ("<img src='try5.php?id=" . $row['id'] . "' height='100' width='100'><br>");
echo ("$row[mainproduct]$row[Companyname],$row[District]<br><br>$row[description].<a href=$row[Website]>Read more...</a><br><brContact Person:$row[ContactPerson]<br>Mobile no :$row[Mobile]<br>Website:<a href=$row[Website]>$row[Website]</a><br><br><hr><br><br>");
}
} else {
echo "<li>No results Found<li>";
}
//try5.php的编码
$link = mysql_connect("localhost", "root", "") or die("Could not connect: " . mysql_error());
mysql_select_db("test") or die(mysql_error());
$sql = "SELECT image FROM imtest";
$result = mysql_query("$sql") or die("Invalid query: " . mysql_error());
header("Content-type: image/jpeg");
echo mysql_result($result, 0);
?>
我得到所有公司详细信息的相同图像。对于每家公司,我都需要不同的形象。我将图像与数据一起存储在不同的表中,对吗?我该如何使用 php?