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