Home > Backend Development > PHP Tutorial > windows8上数据库不能写入

windows8上数据库不能写入

WBOY
Release: 2016-06-13 13:09:18
Original
899 people have browsed it

windows8下数据库不能写入
使用WAMPSERVER搭建的环境,在PHP文件中执行mysql_query()函数写入一条数据,表中会增加一个记录,主键id会自增1,但是其他字段却未写入任何数据,同样的脚本代码在win7下正常写入

------解决方案--------------------
表结构是怎么样的?
我猜可能是字符编码问题.
------解决方案--------------------
首先sql语句和PHP都是平台无关了。只能是你的数据库表结构,或mysql的配置有不同
最好你能贴出SQL语句 SHOW CREATE TABLE `表名`; 执行的结果,以及插入语句。
------解决方案--------------------
那一般是权限问题或firewall问题。
------解决方案--------------------
mysql_query("insert into wenzhang (title,body) values ('标题$i','内容$i')") or die(mysql_error());

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template