数据无法写入数据库解决思路
程序员文章站
2022-06-03 21:53:22
...
数据无法写入数据库
session_start();
[email protected]_connect("localhost", "root", "ch12345") or die("数据库链接错误");
mysql_select_db("literature", $coon);
mysql_query("set names 'UTF-8'");
@$username=$_POST['username'];
@$password=$_POST['password'];
@$email=$_POST['email'];
@$sex=$_POST['sex'];
@$constallation=$_POST['constallation'];
$time=time();
$str="select * from user where username={$username}";
$result1=$coon->query($str); //这行有错误,应该怎么改?
$row=$result1->fetch_row();
if($row)
{
$temp="已有人注册此名,请重新选择名字!";
echo $temp;
echo"返回";
}
else {
$sql="INSERT INTO user(username,sex,time,constallation,password,email)".
" VALUES('$username','$sex',now(),'$constallation','$password','$email')";
//$sql="INSERT INTO user VALUES($username,$sex,$time,$constallation,$password,$email)";
$result=$coon->query($sql);
if($result==true)
{
$_SESSION['mail']="注册成功,请登陆";
echo "";
}
else {echo "注册失败".mysql_error();}
}
?>
------解决方案--------------------
------解决方案--------------------
[email protected]_connect("localhost", "root", "ch12345") or die("数据库链接错误");
$coon->query($str);
还没见过这样写的!仔细看看手册先http://www.php.net/manual/zh/book.mysql.php
------解决方案--------------------
session_start();
[email protected]_connect("localhost", "root", "ch12345") or die("数据库链接错误");
mysql_select_db("literature", $coon);
mysql_query("set names 'UTF-8'");
@$username=$_POST['username'];
@$password=$_POST['password'];
@$email=$_POST['email'];
@$sex=$_POST['sex'];
@$constallation=$_POST['constallation'];
$time=time();
$str="select * from user where username={$username}";
$result1=$coon->query($str); //这行有错误,应该怎么改?
$row=$result1->fetch_row();
if($row)
{
$temp="已有人注册此名,请重新选择名字!";
echo $temp;
echo"返回";
}
else {
$sql="INSERT INTO user(username,sex,time,constallation,password,email)".
" VALUES('$username','$sex',now(),'$constallation','$password','$email')";
//$sql="INSERT INTO user VALUES($username,$sex,$time,$constallation,$password,$email)";
$result=$coon->query($sql);
if($result==true)
{
$_SESSION['mail']="注册成功,请登陆";
echo "";
}
else {echo "注册失败".mysql_error();}
}
?>
------解决方案--------------------
------解决方案--------------------
[email protected]_connect("localhost", "root", "ch12345") or die("数据库链接错误");
$coon->query($str);
还没见过这样写的!仔细看看手册先http://www.php.net/manual/zh/book.mysql.php
------解决方案--------------------
相关文章
相关视频
上一篇: 盘点Oralce的大数据工具库
下一篇: 学php必收藏的几个经典代码
推荐阅读
-
Mysql数据库从5.6.28版本升到8.0.11版本部署项目时遇到的问题及解决方法
-
php实现将Session写入数据库
-
Tomcat无法加载css和js等静态资源文件的解决思路
-
数据库写不进去IIS写入权限怎么设置
-
U盘写保护无法写入和格式化的解决
-
解决mysql本地数据库不能用ip访问的问题
-
使用wordpress的$wpdb类读mysql数据库做ajax时出现的问题该如何解决
-
SQL 2005 ERROR:3145 解决办法(备份集中的数据库备份与现有的数据库不同)
-
Sqlserver 2005附加数据库时出错提示操作系统错误5(拒绝访问)错误5120的解决办法
-
MFC连接数据库时,无法启动程序,计算机丢失libmysql.dll的问题解决办法