显示数据库中blob类型的图片,小弟我图片显示不出来
程序员文章站
2022-05-06 18:09:38
...
显示数据库中blob类型的图片,我图片显示不出来
showimage.php
Second.php3
请问我哪里有问题?PHP新人,不知道哪里错了
showimage.php
include_once dirname(dirname (dirname ( __FILE__ ))). '/yeqztsys1.0/utilityfunction/SqlHelp.class.php';
include_once dirname(dirname (dirname ( __FILE__ ))). '/yeqztsys1.0/Comm.class.php';
$SqlHelper = new SqlHelp ( 'read', 'qztoa' );
$sql = "select * from qzt_image";
$query = $SqlHelper->query($sql );
$query_num = $SqlHelper->num_rows ($query );
$rows = array ();
$retarr = array ();
$query =$SqlHelper->query ( $sql );
if($query)
{
$arr_teainfo2 = array ();
while ( $arr_teainfo = $SqlHelper->fetch_assoc($query) ) {
$arr_teainfo2 [] = $arr_teainfo;
$Id=$arr_teainfo["Id"];
echo $arr_teainfo["Id"];
echo "";
}
}
?>
Second.php3
include_once dirname(dirname (dirname ( __FILE__ ))). '/yeqztsys1.0/utilityfunction/SqlHelp.class.php';
include_once dirname(dirname (dirname ( __FILE__ ))). '/yeqztsys1.0/Comm.class.php';
$SqlHelper = new SqlHelp ( 'read', 'qztoa' );
$sql = "select * from qzt_image where Id=10";
$query = $SqlHelper->query($sql );
$query_num = $SqlHelper->num_rows ($query );
$rows = array ();
$retarr = array ();
$query =$SqlHelper->query ( $sql );
if($query)
{
$arr_teainfo2 = array ();
while ( $arr_teainfo = $SqlHelper->fetch_assoc($query) ) {
$arr_teainfo2 [] = $arr_teainfo;
$Id=$arr_teainfo["Id"];
$imagetype=$arr_teainfo["imagetype"];
//echo $arr_teainfo["images"];
//Header( "Content-type: $imagetype");
header('Content-type: $imagetype');
echo $arr_teainfo["images"];
}
}
?>
请问我哪里有问题?PHP新人,不知道哪里错了
PHP
专题推荐
-
独孤九贱-php全栈开发教程
全栈 170W+
主讲:Peter-Zhu 轻松幽默、简短易学,非常适合PHP学习入门
-
玉女心经-web前端开发教程
入门 80W+
主讲:灭绝师太 由浅入深、明快简洁,非常适合前端学习入门
-
天龙八部-实战开发教程
实战 120W+
主讲:西门大官人 思路清晰、严谨规范,适合有一定web编程基础学习
- 最新文章
- 热门排行
推荐阅读
-
php下将图片以二进制存入mysql数据库中并显示的实现代码
-
如何把存储在数据库中的图片根据自己的需要的大小显示出来
-
如何正确显示数据库中的图片
-
jupyter notebook中图片显示不出来的解决
-
zencart模板网站 小弟我用ftp传的首页flash图片又不显示了
-
magento 如何实现类似于 图片显示的效果 小弟我的页面只有文字 没有图片
-
zencart模板做的网站 小弟我新上了一批新产品 用ftp把图片传到服务器 但在前台页面不显示图片
-
zencart模板网站 小弟我用ftp传的首页flash图片又不显示了
-
php5联接mssql2005数据库表中的image字段图片显示
-
php下将图片以二进制存入mysql数据库中并显示的实现代码
网友评论
文明上网理性发言,请遵守 新闻评论服务协议
我要评论