Home  >  Article  >  Backend Development  >  mysql字段插入代码

mysql字段插入代码

WBOY
WBOYOriginal
2016-06-23 13:39:24930browse

想在数据库的body字段中插入一句 完整的代码:

array (29 => '1',)
php应该怎么写?


回复讨论(解决方案)

insert 

$arr = array (29 => '1');$sqlstr = "insert into table(body) values('".json_encode($arr)."')";mysql_query($sqlstr) or die(mysql_error());

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn