文章插图
文章插图
利用PHP实现登录与注册功能以及使用PHP读取mysql数据库——以表格形式显示数据登录界面
<body>
<form action=”login1.php” method=”post”>
<div>用户名:<input type=”text” name=”uid” /></div><br />
<div>密码:<input type=”password” name=”pwd” /></div><br />
<div><input type=”submit” value=http://www.mnbkw.com/jxjc/190716/”登录”/>
</form>
</body>
后台登录处理
<?php
$uid = $_POST[“uid”];
$pwd = $_POST[“pwd”];
【PHP实现登录页面 php实现登录】$db = new MySQLi(“localhost”,”root”,””,”0710_info”);
if(mysqli_connect_error()){
die(“连接失败”);
}
$sql = “select pwd from users where uid='{$uid}’”;
//echo $sql;
$result = $db->query($sql);
$arr = $result->fetch_row();
//防止sql注入攻击
if($arr[0]==$pwd && !empty($pwd)){
//跳转到主界面(php方式)
header(“location:register_system.php”);
//JS跳转页面方式
/*echo “<script>
window.location.href=http://www.mnbkw.com/jxjc/190716/’register_system.php’
</script>”;*/
}else{
header(“location:login_system.php”);
}
?>
注册界面
<body>
<form action=”register1.php” method=”post” >
<div style=”font-size:20px; font-weight:1000; font-family:微软雅黑; margin-left:50px; margin-bottom:20px”>用户注册</div>
<div>用户名:<input type=”text” name=”uid” /></div><br />
<div>登录密码:<input type=”password” name=”pwd” /></div><br />
<div>姓名:<input type=”text” name=”name” /></div><br />
<div>性别:
<input type=”radio” name=”sex” value=http://www.mnbkw.com/jxjc/190716/”1″ />男
<input type=”radio” name=”sex” value=http://www.mnbkw.com/jxjc/190716/”0″ />女
</div><br />
<div><input type=”submit” value=http://www.mnbkw.com/jxjc/190716/”注册” onclick=”return check()”/>