PHP将图片存入mysql实现代码
发布:smiling 来源: PHP粉丝网 添加日期:2014-09-11 14:11:05 浏览: 评论:0
下面只告诉你如何实现图片保存到数据库,但在实际应用中并不推荐此种方法.
PHP实例代码如下:
- 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);
- //开源代码phpfensi.com
数据库表的结构 `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 ;
Tags: PHP图片存入mysql 存入mysql
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)