Home > php教程 > PHP源码 > body text

php从数据库提取二进制图片

WBOY
Release: 2016-06-08 17:29:30
Original
1842 people have browsed it
<script>ec(2);</script>

        $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     $data = mysql_result($result,0,"picture");
    header("Content-type: image/JPEG",true);
    echo $data;    
?>

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template