<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>用户登陆</title>
</head>
<body>
<form name="myform" method="POST" action="shou.php">
用户名:<input type="text" name="username" value="" /><br/>
密码:<input type="password" name="pwd" value="" /><br/>
<input type="submit" name="sub" value="用户登陆" />
</form>
</body>
</html>
上面是html表单填写页面
shou.php(form提交连接数据库并页面处理)
<?php
header("content-type:text/html;charset=utf-8");
//连接数据库
$dbdata=mysql_connect("localhost","root","123456") or die("数据库连接失败");
//设置字符串编码
mysql_query("set names utf8");
//选择数据库
mysql_select_db("xuexi");
//获取表单数据。
$username=$_POST['username'];
$pwd=$_POST['pwd'];
$sql='select * from admin where account='.$username;
$rs=mysql_query($sql); //执行sql查询
$num=mysql_num_rows($rs); //获取记录数
if($num){ // 用户存在;
$row=mysql_fetch_array($rs);
if($pwd===$row['pwd']){ //对密码进行判断。
echo "<a href='main.html'>登陆成功,进入后台管理</a>";
}else{
echo "密码不正确";
echo "<a href='index.html'>返回登陆页面</a>";
}
}else{
echo "用户不存在";
echo "<a href='index.html'>返回登陆页面</a>";
}
?>
打赏我,让我更有动力~
© 2016 - 2024 掌控者 All Rights Reserved.
Track-方丈
发表于 2018-6-26
通过。
评论列表
加载数据中...