PHP实现会员注册系统

分享一个基于PHP的非常简单基础的注册系统,为了减轻难度没有使用Cookie和Session,数据库大家按照自己需求更改,有问题欢迎联系我。

index.html

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <a href="https://www.jb51.net/join_us.html" > 注册 </a> <h2>分开一下</h2> <a href="https://www.jb51.net/login.html" > 登录 </a> </body> </html>

join_us.html

注册页面,发一个表单给add_member.php,使用post。

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <h1>欢迎加入我们</h1> <form action="add_member.php" method="post"> <table> <tr> <td> 用户名: </td> <td> <input type="text"> </td> </tr> <tr> <td> 输入密码: </td> <td> <input type="password"> </td> </tr> <tr> <td><input type="submit" value="确定" > </td> </table> </form> </body> </html>

add_member.php

稍微用了一下js,也可以用header(),仅测试使用,项目不要傻乎乎的给root权限。

<?php $account = $_POST["member_name"]; $password = $_POST["member_password"]; //获取字段信息 $link = mysqli_connect("127.0.0.1", "root", "") or die("连接失败"); //连接数据库 mysqli_select_db($link, "jack"); //连接数据表 $sql = "SELECT * FROM info WHERE"; $result = mysqli_query($link, $sql); //检索数据库同名账户 if (mysqli_num_rows($result) != 0) { mysqli_free_result($result); mysqli_close($link); //释放空间 echo "<script>alert('该用户名已被使用');history.go(-1);</script>"; //返回 } //同名账户返回注册页 else { $sql = "INSERT INTO info(Name,Password) VALUES( '$account','$password' )"; mysqli_query($link, $sql); //写入 mysqli_free_result($result); mysqli_close($link); //释放空间 echo"注册成功"; } //非同名写入数据库 ?>

login.html

登录页面,发表单给check_password.php

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <h2> 欢迎登录 </h2> <form action="check_password.php" method="post"> <table> <tr> <td> 用户名: </td> <td> <input type="text"> </td> </tr> <tr> <td> 输入密码: </td> <td> <input type="password"> </td> </tr> <tr> <td><input type="submit" value="确定" > </td> </table> </form> </body> </html>

check_password.php

验证密码

<?php $account = $_POST["member_name"]; $password = $_POST["member_password"]; //获取字段信息 $link = mysqli_connect("127.0.0.1", "root", "") or die("连接失败"); //连接数据库 mysqli_select_db($link, "jack"); //连接数据表 $sql = "SELECT * FROM info WHEREAND Password='$password'"; $result=mysqli_query($link,$sql); if (mysqli_num_rows($result) == 0) { mysqli_free_result($result); mysqli_close($link); //释放空间 echo "<script>alert('账户或密码错误');history.go(-1);</script>"; //返回 } else{ mysqli_free_result($result); mysqli_close($link); //释放空间 echo "登录成功"; //建议在此处setcookie(); } ?>

都是很基础的东西,大家多多交流。

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:http://www.heiqu.com/a1fcc07f81a927131cb8666c152bdeb8.html