真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

php輸出數(shù)據(jù)庫圖片 php將數(shù)據(jù)庫數(shù)據(jù)輸出柱狀圖

PHP在數(shù)據(jù)庫中查詢并且顯示圖片

一般不向數(shù)據(jù)庫插入圖片 而是插入圖片的src 通過src找到圖片然后顯示。

創(chuàng)新互聯(lián)專注于安仁網(wǎng)站建設(shè)服務(wù)及定制,我們擁有豐富的企業(yè)做網(wǎng)站經(jīng)驗(yàn)。 熱誠為您提供安仁營銷型網(wǎng)站建設(shè),安仁網(wǎng)站制作、安仁網(wǎng)頁設(shè)計(jì)、安仁網(wǎng)站官網(wǎng)定制、小程序開發(fā)服務(wù),打造安仁網(wǎng)絡(luò)公司原創(chuàng)品牌,更為您提供安仁網(wǎng)站排名全網(wǎng)營銷落地服務(wù)。

?php

session_start();

//array數(shù)組中放圖片的格式

$uptypes = array("image/jpg","image/jpeg","image/png","image/pjpeg","image/gif","image/bmp","image/x-png");

$files =$_FILES["uppic"];

if($files["size"]2097152){ //圖片大小判斷

echo "上傳圖片不能大于2M";

echo "meta http-equiv='REFRESH' CONTENT='1;URL=pic.php'";

exit;

}

$ftype =$files["type"];

if(!in_array($ftype,$uptypes)){ //圖片格式判斷雹毀返

echo "上傳的圖片文件格式不正確";

echo "meta http-equiv='REFRESH' CONTENT='1;URL=pic.php'";

}

$fname = $files["tmp_name"]; //在服務(wù)器臨時(shí)存儲名稱

$image_info = getimagesize($fname);

$name = $files["name"];

$str_name = pathinfo($name); //以數(shù)組的形式返回文件路勁的信息

$extname = strtolower($str_name["extension"]); //把字符串改為小寫 extensiorn擴(kuò)展名

$upload_dir = "upload/"; //upload文件夾

$file_name = date("YmdHis").rand(1000,9999).".".$extname;

$str_file = $upload_dir.$file_name; //文件目錄

//存入數(shù)據(jù)庫

$con=mysql_connect("localhost","root","");

if(!$con){

die(("數(shù)據(jù)庫連接失敗").mysql_error());

}

mysql_select_db("mywork",$con);

$sql="update user set picpath='$str_file' where user_name='$username'"; //將圖片地址插余猜入數(shù)據(jù)庫mywork

mysql_query($sql,$con);

mysql_close($con);

if(!file_exists($upload_dir)){

mkdir($upload_dir); //創(chuàng)建目錄 成功則返回true 失敗則返回源饑flase

}

if(!move_uploaded_file($files["tmp_name"],$str_file)){ //將上傳的文件移動到新的目錄 要移動文件和文件新目錄 成功則返回true

echo "圖片上傳失敗";

echo "meta http-equiv='REFRESH' CONTENT='1;URL=插入失敗后希望跳轉(zhuǎn)的頁面";

}

else{

//echo "img src=".$str_file."";

echo "圖片上傳成功";

echo "meta http-equiv='REFRESH' CONTENT='1;URL=插入成功希望挑戰(zhàn)的頁面";

}


網(wǎng)站欄目:php輸出數(shù)據(jù)庫圖片 php將數(shù)據(jù)庫數(shù)據(jù)輸出柱狀圖
網(wǎng)站路徑:http://weahome.cn/article/dshoijd.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部