/* このコードは localhost では機能していますが (画像のエコー)、実際のサイトでは表示されません */ 助けてください,,,,
<?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;
?>