欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

为何修改信息后数据库表中内容为空

程序员文章站 2022-04-20 11:28:41
...
为什么修改信息后数据库表中内容为空
套用上一套修改课题的代码写了一个修改信息的代码,但是将内容修改提交后,再查询表中内容发现除了xuehao其他内容为空?
//######################学生信息修改1##########################
include "config.php";
include "header.php";
?>
修改学生信息
extract($_REQUEST);
$query="update $student_table set name='$name1' where xuehao='$xuehao'";
mysql_query("set names 'GB2312'");
$result=mysql_query($query);
$query="update $student_table set sex='$sex1' where xuehao='$xuehao'";
mysql_query("set names 'GB2312'");
$result=mysql_query($query);
$query=mysql_query("update $student_table set class='$class1' where xuehao='$xuehao'");
mysql_query("set names 'GB2312'");
$result=mysql_query($query);
$query=mysql_query("update $student_table set password='$password2' where xuehao='$xuehao'");
mysql_query("set names 'GB2312'");
$result=mysql_query($query);
$query=mysql_query("update $student_table set password1='$password3' where xuehao='$xuehao'");
mysql_query("set names 'GB2312'");
$result=mysql_query($query);
$query="update $student_table set love='$love1' where xuehao='$xuehao'";
mysql_query("set names 'GB2312'");
$result=mysql_query($query);
$query="update $student_table set telephone='$telephone1' where xuehao='$xuehao'";
mysql_query("set names 'GB2312'");
$result=mysql_query($query);
$query="update $student_table set reward='$reward1' where xuehao='$xuehao'";
mysql_query("set names 'GB2312'");
$result=mysql_query($query);

if($password2!=$password3)
{
echo"

输入的密码不一致,请重新输入。

";
echo "";
exit;
}

if($result==true)
{
echo"

修改信息成功!";
echo "";
exit;
}
else
{
echo"

修改出错,请返回重新修改。

";
echo "";
exit;
}


?>

网友评论

文明上网理性发言,请遵守 新闻评论服务协议

我要评论
  • 为何修改信息后数据库表中内容为空
  • 专题推荐

    作者信息
    为何修改信息后数据库表中内容为空

    认证0级讲师

    推荐视频教程
  • 为何修改信息后数据库表中内容为空javascript初级视频教程
  • 为何修改信息后数据库表中内容为空jquery 基础视频教程
  • 视频教程分类