Home > Backend Development > PHP Tutorial > 为啥不能成功的插入数据

为啥不能成功的插入数据

WBOY
Release: 2016-06-20 12:59:53
Original
837 people have browsed it



回复讨论(解决方案)

mysql_query($query);
改为
mysql_query($query) or die(mysql_error());
看看有什么错

mysql_query($query);
改为
mysql_query($query) or die(mysql_error());
看看有什么错



是数据库编码的问题,我因该怎么设置才不会乱码???

mysql_query($query);
改为
mysql_query($query) or die(mysql_error());
看看有什么错



mysql_query('set names 我因该写什么?');

mysql_query('set names gbk');

mysql_query('set names gb2312');

你???不是utf8??
set names utf8

你???不是utf8??
set names utf8



设置了但还是乱码

mysql_query('set names gbk');

mysql_query('set names gb2312');



没用 还是乱码

你的数据库和php编码都是utf8的,偏要set names gbk 。能不乱码呢

 set names utf8 

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