我正在尝试访问每家公司的图片,当公司的详细信息通过搜索获得时。这是我编码的一部分。
<?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?
答案 0 :(得分:1)
您的SQL语句将始终返回相同的结果。你忘了包括WHERE,例如:
$sql = "SELECT image FROM imtest WHERE id=" . $_GET['id'];