程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php 從數據庫提取二進制圖片的處理代碼

php 從數據庫提取二進制圖片的處理代碼

編輯:關於PHP編程

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;?>">

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved