1、PHP实现添加mysql数据时,如果字段中含有中文,刷新时php不会报错,数据不会添加到数据库?
原因:Incorrect string value: '\xD6\xD0\xB9\xFA\xB1\xEA...' for column 'VARIABLE_VALUE' at row 1
1、自增的话,可以省略字段。
2、 典型的字符编码不一致问题
解决:show variables like '%char%';show create table tbname; 查看字符集是否一致。
重要在con连接数据库设置:mysql_select_db("dch_db",$con);
mysql_query("set names gb2312");请求PHP 页:<meta http-equiv="Content-Type" content="text/html; charset=gdk" />
<?php
$con=mysql_connect("localhost","root","123456"); if(!$con){ echo "conection fail!".mysql_error(); } mysql_select_db("dch_db",$con); mysql_query("set names gb2312");?><?php
session_start(); include_once("conn.php"); //echo $_REQUEST[user];?>2、要求对数据库的用户密码加密?
解决:$pass = $_POST[pass];
//对密码MD5加密 $pass = md5($pass); $sql="select count(*) from tb_user where username='".$name."' and password='".$pass."' and display='管理员'"; //执行sql语句$result=mysql_query($sql,$link);数据字符长度设密码长度为32,注册:<?php
if ( $_POST["submit"] <> "" ){ include("config.php");$pass = isset($_POST['password']) ? $_POST['password'] : '';echo $md5_password=md5($pass . ALL_PS);$sql="insert into user_list (id,m_id,username,password) values (null,'2','".$_POST["username"]."','".$md5_password."')"; mysql_query($sql);}?><p>sign up</p><form action="" method ="post">user:<input type="text" name="username" /><br/><br />passward:<input type="text" name="password" /><br /><br /><input type="submit" name ="submit" value ="signup" /></form>3ajax jquery 学习路径: