其中db_mysql.inc.php,config.php,function.php不是真正使用到的,關鍵是$filename檔名,我是透過讀取資料庫中的圖片名稱
<?php
include_once('inc/db_mysql.inc.php');
include_once('inc/config.php');
include_once('class/function.php');
全域$picPath;
if (strstr($_SERVER[HTTP_USER_AGENT],"MSIE")) {
$附件='';
} 別的 {
$attachment = '附件;';
$
image = getInfo('newssp_gallery','id',$_GET['id']);
$filename = $picPath.$image['filename'];
if (!file_exists($filename)) {
$filename = $picPath."notexist.gif";
}
header("快取控制:無儲存、無快取、必須重新驗證"); // HTTP/1.1
header("Cache-Control: 後檢查=0, 預檢查=0", false);
header("Pragma: 無快取"); // HTTP/1.0
header("Content-disposition:".$attachment." filename=".$image['original']);
$大小 = @filesize($檔名);
header("內容長度:$size");
$fd = @fopen($檔名,rb);
$contents = @fread($fd,$size);
@fclose ($fd);
回顯$內容;
?
資料庫裡的記錄ID,寬度是預計的寬,高度是預計的高,請不要同時寬高都上,例如,你要實現寬為50的預計,只要<img src='showpic.php? id=xxx ' width='50'>這樣就可以了