答案:<?
require("Conn.php");
$user=$_POST['user'];
$pwd=$_POST['pwd'];
if(!is_null($_POST['Submit'])){
if($user!=null and $pwd!=null){
$insert="insert into laod(user,pwd) values('$user','$pwd')";
$result=mysql_query($insert,$conn);
if($result){
echo "<script>alert('注册成功!');window.location.href='zhuce.php';</script>";
}
else{
echo "<script>alert('注册失败!');window.location.href='zhuce.php';</script>";
}
}
else{
echo "<script>alert('用户名或密码不能为空!');window.location.href='zhuce.php';</script>";
}
}
else if(!is_null($_POST['Submit1'])){
if($user!=null and $pwd!=null){
$select="select * from laod where user='$user' and pwd='$pwd'";
$num=mysql_query($select,$conn);
if(mysql_num_rows($num)>0){
echo "<script>alert('登陆成功!');window.location.href='zhuce.php';</script>";
}
else{
echo "<script>alert('该用户不存在');window.location.href='zhuce.php';</script>";
}
}
}
?>
//zhuce.php 为模板显示页(自己建就好)
上一个:怎么样才能学好php呢?
下一个:好,问一下 php 中 !==和!= 区别? 经常有多一个"="的情况出现,选择相等的时候用“===”,这些有区别吗