文件test10.html的代码
<html>
<head>
</head>
<body>
<form method=post action="users.php">
<center>
用户名:<input type=text name="name" size=16><br>
密 码:<input type=password name="pwd" size=16><p>
<input type=submit name="normal" value="登陆">
<input type=submit name="newuser" value="新用户注册">
</center>
</form>
</body>
</html>
文件users.php的代码
<html>
<head>
<body>
<?php
$connect_id=mysql_connect("127.0.0.1","root","19841024");
mysql_select_db("users",$connect_id);
//点机登陆按钮用户登陆
if($normal)
{ if(empty($name)||empty($pwd))
{ //如果用户名或密码为空
echo("用户名和密码b不能为空!");
}
//下面进行用户名和密码的校验
$result=mysql_query("select *from users where name='$name'");
//下面检测用户名
if(mysql_num_rows($result)!=1)
{ echo("用户名不存在!");
}
//检测密码
else
{ $arruser=mysql_fetch_array($result);
if($arruser["password"]!=$pwd)
{ echo("密码错误!");
}
else
{ echo("<title>用户登陆成功!</title>");
}
}
mysql_close();
exit();
?>
</body>
</head>
</html>