一个简单的登录注册模块

一、主页:
只有一个跳转到登录页面的按钮。

二、登录界面:

登录检验的实现:
include 'conn.php';
$username=$_POST["txt_user"];
$pwd=$_POST["txt_pwd"];
$checkuser_sql = "select * from user where username='".$username."' and password='".$pwd."'";
$result = perform_query($checkuser_sql);
记住密码的实现:
通过 Cookie 储存用户名和密码,并使用 php 代码直接嵌入 html 页面中。
<?php
$re_username="";
$re_pwd="";
$re_re=false;
if(isset($_COOKIE["username"])&&isset($_COOKIE["password"])){
$re_username=$_COOKIE["username"];
$re_pwd=$_COOKIE["password"];
}
if(isset($_COOKIE["remember"])){
$re_re=true;
}
?>
<input type="text" value="<?php echo $re_username ?>" placeholder="你的用户名" name="txt_user" maxlength="20" autocomplete="off" class="input-box">
<input type="password" value="<?php echo $re_pwd ?>" placeholder="密码" name="txt_pwd" class="input-box">
if($_POST["remember"]){
setcookie("username","$username",time()+60*60*24*30);
setcookie("password","$pwd",time()+60*60*24*30);
}
else{
setcookie("username","",time()-1);
setcookie("password","",time()-1);
}

三、注册界面:

检验用户名是否已被注册:
$sql="select * from user where username = '$username'";
$result=perform_query($sql);
if ($result){
?>
<script>
alert('用户名已被注册!');
history.go(-1);
</script>");
<?php
}
用户名、密码合法性检验:
function check_username($username){
$nameErr = "";
if (empty($username))
{
$nameErr = "请填写用户名!";
}
else
{
if (!preg_match("/^[A-Za-z0-9_\x{4e00}-\x{9fa5}]{6,20}$/u",$username))
{
$nameErr = "用户名由6-20位数字或字母、汉字、下划线组成!";
}
}
return $nameErr;
}
function check_pwd($password){
$pwdErr = "";
if (empty($password))
{
$pwdErr = "请填写密码!";
}
else
{
if (!preg_match("/^[A-Za-z0-9]{6,20}$/u",$password))
{
$pwdErr = "密码由6-20位数字或字母组成!";
}
}
return $pwdErr;
}
用户注册的实现:
$INS="Insert Into user (username,password) Values ('$username','$password')";
perform_exec($INS);
四、数据库连接(PDO实现):
function perform_query($query) {
try {
$conn =new PDO("mysql:host=localhost; dbname=729_test", "root", "root");
$row = $conn->query($query);
return $row->rowCount();
} catch (PDOException $ex) {
?>
<p>Sorry, a database error occurred.</p>
<?php
return NULL;
}
}
function perform_exec($query) {
try {
$conn =new PDO("mysql:host=localhost; dbname=729_test", "root", "root");
$conn->exec($query);
} catch (PDOException $ex) {
?>
<p>Sorry, a database error occurred.</p>
<?php
return NULL;
}
}
|