最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

php下將圖片以二進(jìn)制存入mysql數(shù)據(jù)庫中并顯示的實(shí)現(xiàn)代碼

 更新時(shí)間:2010年05月27日 03:44:21   作者:  
php把圖片存入mysql教程數(shù)據(jù)庫教程中并在網(wǎng)頁上顯示,一般情況下并不需要將突破保存到數(shù)據(jù)庫中,不論是異地備份還是什么的,都很麻煩,特殊需要的除外。
//保存圖片到數(shù)據(jù)庫的php代碼
復(fù)制代碼 代碼如下:

If($Picture != "none") {
$PSize = filesize($Picture);
$mysqlPicture = addslashes(fread(fopen($Picture, "r"), $PSize));
mysql_connect($host,$username,$password) or die("Unable to connect to SQL server");
@mysql_select_db($db) or die("Unable to select database");
mysql_query("INSERT INTO Images (Image) VALUES ($mysqlPicture)") or die("Cant Perform Query");
}else {
echo"You did not upload any picture";
}

//以img標(biāo)簽讀取數(shù)據(jù)庫中的圖片的代碼
復(fù)制代碼 代碼如下:

mysql_connect($host,$username,$password) 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 "<IMG SRC="Second.php3? PicNum=$row->PicNum">";

//如secoed.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;

相關(guān)文章

最新評論

绍兴县| 炉霍县| 大石桥市| 海南省| 永和县| 凤阳县| 金乡县| 巴东县| 西华县| 古蔺县| 札达县| 葵青区| 长武县| 德清县| 靖安县| 闽侯县| 阿克陶县| 开化县| 西藏| 巴林右旗| 海盐县| 开封县| 内黄县| 枝江市| 鹿邑县| 余庆县| 安多县| 大竹县| 岳阳县| 且末县| 大连市| 乌拉特后旗| 武胜县| 察雅县| 青神县| 云安县| 大理市| 宣威市| 洞口县| 鱼台县| 嘉兴市|