取出數(shù)據(jù)庫保存的路徑$url
創(chuàng)新互聯(lián)建站專注于溫江網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗。 熱誠為您提供溫江營銷型網(wǎng)站建設(shè),溫江網(wǎng)站制作、溫江網(wǎng)頁設(shè)計、溫江網(wǎng)站官網(wǎng)定制、成都微信小程序服務(wù),打造溫江網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供溫江網(wǎng)站排名全網(wǎng)營銷落地服務(wù)。
img src="?php echo $url;?" width="圖片寬度" height="圖片高度"
?php
$pic=array();//實例1,數(shù)組存儲
$pic2='';//實例2,變量存儲
while?($rows=mysql_fetch_assoc($rs))
{
$pic[]?=?$rows["jj_yulan"];//存進數(shù)組
$pic2?.=?"img?alt=''?src='{$row[jj_yulan]}'?/";?//存進變量,注意?.?是連接符
}
//輸出
print_r($pic);
echo?$pic2;
?
?php
//將圖片存進數(shù)據(jù)庫再讀出,注意存儲圖片的字段類型必須為blob
$user=’root’;
$password=’root’;
$db=’test’;
$connect=mysql_connect(‘localhost’,$user,$password);
mysql_set_charset(‘utf8′,$connect);
mysql_select_db($db);
$photo = “0x”.bin2hex(file_get_contents(“./test.jpg”));
$sql=”INSERT INTO `test`.`test` (`photo`) VALUES ($photo);”;//$photo不需要用引號,切記
mysql_query($sql);
//$result=mysql_query(“SELECT *
//FROM `test`
//LIMIT 0 , 30〃);
//$img=mysql_fetch_array($result);
//echo $img['photo'];
?