我希望我的代码能够从数据库中获取图像 我叫display.php。我收到间隔服务器错误。
<?require_once"db.php";
$sql="select * from image";
$result=mysql_query($sql);
if($result)
{
while($row=mysql_fetch_array($result))
{
echo"<img src=display.php?id=".$row['id']."/>";
}
}
else
{
echo"error";
}
?>
display.php
<?require_once"db.php";
$id=$_REQUEST['id'];
$sql="select photo,imagetype from image where id='$id'";
$result=mysql_query($sql);
if($result)
{
$row=mysql_fetch_array($result)
$type="Content-type:".row['imagetype'];
header($type);
echo $row['photo'];
}
else
{
echo "error";
}
?>
这是另一个页面,我从数据库中获取基于id的图像。这个页面上的错误是什么?当我运行show.php时,它显示无法重新定位内部错误400.我试图修复它但失败了。