我想把前台选中的checkbox保存到数据库应该怎么搞,希望大神可以帮我改一下。多谢大神们。
这是前台代码
注册页面注册页面
名字
性别:男女
专业
大专
本科
研究生
级别:
email:
工资:
兴趣:羽毛球
乒乓球
网球
这是后台代码
$name=$_POST['name'];$sex=$_POST['sex'];
$education=$_POST['education'];
$grade=$_POST['grade'];$email=$_POST['email'];$salary=$_POST['salary'];
$conn=mysql_connect("127.0.0.1","root","123456");
if(!$conn){
die(mysql_errno());
}
mysql_select_db("empmanage",$conn) or die(mysql_errno());
mysql_query("set names utf8",$conn) or die(mysql_errno);
$sql="insert into emp(name,sex,education,grade,salary,email) values('$name','$sex','$education','$grade','$salary','$email')";
$res=mysql_query($sql,$conn);
if($res){
header("Location:ok.php");
exit();
}else{
header("Location:empList.php");
exit();
}
?>