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

PHP將圖片存入mysql實現代碼

編輯:關於PHP編程

php教程將圖片存入mysql教程實現代碼
下面只告訴你如何實現圖片如何保存到數據庫教程,不推薦此種方法。
*/

mysql_connect('localhost','root','root');
mysql_select_db('ac');
$picdir ="/a/ag.gif";
$image = addslashes(file_get_contents($picdir));
$sql ="insert into tbl_name (field) values ('" . $image . "')";
mysql_query($sql);

/*
--
-- 表的結構 `test`
--

create table if not exists `test` (
  `id` int(8) not null auto_increment,
  `title` char(150) default null,
  `content` longblob,
  `addnewcolumn` varchar(20) not null,
  primary key  (`id`)
) engine=myisam default charset=utf8 auto_increment=1 ;

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved