发新话题
打印

怎样在页面中显示SYBASE数据库中的image类型的字段数据,请大虾帮忙!

你知道怎样从数据库读出内容,我就省略那部分  
//show  image  php  (showimg.php)  
<?php  
       //sql  query.....  
       //假设已经从数据读出内容到$picDate:  
       //PHP支持三种图像:jpg、gif、png  
       //你要对应的把下句的image/jpeg换成相应的image/gif、image/png  
       header("Content-type:  image/jpeg");   
       echo  $picData;  
?>  

在html中显示:  
//Query  Page(Query.htm)  
.....  
<img  src=showimg.php?id=xxxx>  
.....

TOP

发新话题