我能够使用 php 从 mysql 数据库中检索单个图像。
现在我想检索多个图像。
这是一段代码:
<?php
--db connection code--
$sql = "SELECT image FROM try WHERE status='0'";
$result = mysql_query("$sql") or die("Invalid query: " . mysql_error());
while ($row = @mysql_fetch_assoc($result))
{
// set the header for the image
header("Content-type: image/jpeg");
echo mysql_result($result, 0);
echo '<br>';
}
?>
执行此代码,仅显示表中的第一个图像。如何检索多个图像?