/*此代码在本地主机上工作(回显图像)但未显示在实时站点上*/请帮助,,,,
<?php echo "<img src=geti/tipb_geti.php?id=$lastid width=200px height=180px >";
/*下面这个php块是tipb_geti.php文件*/
<?php
include("connect.php");
$id=@addslashes($_REQUEST['id']);
$image_query=@mysql_query("select image from tipuranibasti where id=$id");
$image_row=@mysql_fetch_assoc($image_query);
$image=$image_row['image'];
header("content-type: image/jpeg");
echo $image;
?>