程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> PHP綜合 >> PHP將圖片存入MySQL實現代碼

PHP將圖片存入MySQL實現代碼

編輯:PHP綜合

下面只告訴你如何實現圖片保存到數據庫,但在實際應用中並不推薦此種方法.

PHP實例代碼如下:

  1. MySQL_connect('localhost','root','root'); 
  2. MySQL_select_db('ac'); 
  3. $picdir ="/a/ag.gif"; 
  4. $image = addslashes(file_get_contents($picdir)); 
  5. $sql ="insert into tbl_name (fIEld) values ('" . $image . "')"; 
  6. MySQL_query($sql); 

數據庫表的結構 `test`,代碼如下:

  1. create table if not exists `test` ( 
  2.   `id` int(8) not null auto_increment, 
  3.   `title` char(150) default null, 
  4.   `content` longblob, 
  5.   `addnewcolumn` varchar(20) not null, 
  6.   primary key  (`id`) 
  7. ) engine=myisam default charset=utf8 auto_increment=1 ;
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved