php 从数据库提取二进制图片的处理代码
作者:bea
image.php文件 代码如下: <?php $conn=@mysql_connect("localhost","root","123") or die("服务器连接错误!"); //链接数据库 @mysql_select_db("upload",$conn) or die("未发现数据库!"); $query="select * from upfile where ftag=$fn"; $result=mysql_query($query); if(
image.php文件
代码如下:
<?php
$conn=@mysql_connect("localhost","root","123") or die("服务器连接错误!"); //链接数据库
@mysql_select_db("upload",$conn) or die("未发现数据库!");
$query="select * from upfile where ftag=$fn";
$result=mysql_query($query);
if(!$result) die("error: mysql query");
$num=mysql_num_rows($result);
if($num<1) die("error: no this recorder");
$data = mysql_result($result,0,"picture");
header("Content-type: image/JPEG",true);
echo $data;
?>
上面是图片提取
前台显示文件
代码如下:
<img src="image.php?fn=<?php echo $fn;?>">
有用 | 无用
代码如下:
<?php
$conn=@mysql_connect("localhost","root","123") or die("服务器连接错误!"); //链接数据库
@mysql_select_db("upload",$conn) or die("未发现数据库!");
$query="select * from upfile where ftag=$fn";
$result=mysql_query($query);
if(!$result) die("error: mysql query");
$num=mysql_num_rows($result);
if($num<1) die("error: no this recorder");
$data = mysql_result($result,0,"picture");
header("Content-type: image/JPEG",true);
echo $data;
?>
上面是图片提取
前台显示文件
代码如下:
<img src="image.php?fn=<?php echo $fn;?>">
有用 | 无用
猜你喜欢
您可能感兴趣的文章:
- php面向对象全攻略 (二) 实例化对象 使用对象成员
- php面向对象全攻略 (一) 面向对象基础知识
- PHP5 操作MySQL数据库基础代码
- PHP 字符截取 解决中文的截取问题,不用mb系列
- php 生成饼图 三维饼图
- php 不同编码下的字符串长度区分
- php 应用程序安全防范技术研究
- 从Web查询数据库之PHP与MySQL篇
- php 服务器调试 Zend Debugger 的安装教程
- php 代码优化的42条建议 推荐
- PHP下通过系统信号量加锁方式获取递增序列ID
- PHP 日常开发小技巧
- php程序之die调试法 快速解决错误
- 火车采集器 免费版使出收费版本功能实现原理
- 使用php来实现网络服务
- Discuz 6.0+ 批量注册用户名
- PHP 分页类(模仿google)-面试题目解答
- frename PHP 灵活文件命名函数 frename
- PHPLog php 程序调试追踪工具