第一個檔案作為HTML頁面的模板,定點陣圖片的顯示位置。第二個檔案則被用來從資料庫中實際輸出檔案流,作為標籤的SRC屬性。
第一個檔案的簡單形式可以如下:
mysql_connect($host,$username,$password2003) or die("Unable to connect to SQL server");
@mysql_select_db($db) or die("Unable to select database");
$result=mysql_query("SELECT * FROM Images") or die("Cant Perform Query");
While($row=mysql_fetch_object($result)) {
echo "PicNum\">";
} ?>
當HTML頁面被瀏覽時,每顯示一副圖片就會呼叫一次Second.php3檔案。當第二個檔案被呼叫時會傳入相應的Picture ID,我們可以藉此從資料庫中取回對應的圖片並顯示。
Second.php檔案如下:
$result=mysql_query("SELECT * FROM Images WHERE PicNum=$PicNum") or die("Cant perform Query");
$row=mysql_fetch_object($result);
Header( "Content-type: image/gif");
echo $row->Image;
?>
以上僅供參考
第一個檔案作為HTML頁面的模板,定點陣圖片的顯示位置。第二個檔案則被用來從資料庫中實際輸出檔案流,作為標籤的SRC屬性。
第一個檔案的簡單形式可以如下:
mysql_connect($host,$username,$password2003) or die("Unable to connect to SQL server");
@mysql_select_db($db) or die("Unable to select database");
$result=mysql_query("SELECT * FROM Images") or die("Cant Perform Query");
While($row=mysql_fetch_object($result)) {
echo "PicNum\">";
} ?>
當HTML頁面被瀏覽時,每顯示一副圖片就會呼叫一次Second.php3檔案。當第二個檔案被呼叫時會傳入相應的Picture ID,我們可以藉此從資料庫中取回對應的圖片並顯示。
Second.php檔案如下:
$result=mysql_query("SELECT * FROM Images WHERE PicNum=$PicNum") or die("Cant perform Query");
$row=mysql_fetch_object($result);
Header( "Content-type: image/gif");
echo $row->Image;
?>
以上僅供參考