主题:急!!! PHP 显示ORACLE 的BOLB数据(为什么显示不出来)
//文件名为 getpic.php
$myquerystr="select pic from dd where id=".$id;
$queryid=ociparse($conn,$myquerystr);
ociexecute($queryid);
if (OCIFetchInto($queryid, $result))
{
//图片保存的是GIF
Header("Content-type:image/gif");
echo $result[PIC]->load();
}
OCIFreeStatement($queryid);
OCILogoff($conn);
?>
//调用文件,其中的内容如下:
....
echo " <td align='left' nowrap>";
echo "<image src=getsgt.php?id=99 >";
echo "</td>\n";
.......
$myquerystr="select pic from dd where id=".$id;
$queryid=ociparse($conn,$myquerystr);
ociexecute($queryid);
if (OCIFetchInto($queryid, $result))
{
//图片保存的是GIF
Header("Content-type:image/gif");
echo $result[PIC]->load();
}
OCIFreeStatement($queryid);
OCILogoff($conn);
?>
//调用文件,其中的内容如下:
....
echo " <td align='left' nowrap>";
echo "<image src=getsgt.php?id=99 >";
echo "</td>\n";
.......