php注册和登录界面的实现案例(推荐)

作者:jingxian 时间:2024-04-30 08:48:47 

当初我觉得一个网站上注册和登录这两个功能很神奇,后来自己研究一下发现其实道理很简单,接下来看一下怎么实现的吧。。。。

我在我的电脑上建了几个文件:

login.html (登录页面)

register.html(注册页面)

success.html(登录成功跳转页面)

return.html(注册成功页面)

login.php

register.php

登录界面和注册界面以及success.html并没有

什么都是些html标记如下:


<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>登录界面</title>
</head>

<body>
<form method="post" action="login.php">
账号:
<input type="text" name="usernamel"><br/><br/>
密码:
<input type="password" name="passwordl">
<input type="submit" value="登录" name="subl">
<a href="http://127.0.0.1:8080/register.html">没有账号,注册</a>
</form>
</body>
</html>

 


<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>会员注册</title>
</head>

<body>
<form method="post" action="register.php">
账&nbsp;&nbsp;户:
<input type="text" name="username"><br/><br/>
密&nbsp;&nbsp;码:
<input type="password" name="password"><br/><br/>
密码确认:
<input type="password" name="password2">
<input type="submit" value="注册" name="sub">
</form>
</body>
</html>

return.html是注册成功之后呈现的页面,里面有一段js代码是用来定时返回登录界面的


<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>无标题文档</title>
</head>

<body>
注册成功!<br/>
5秒后返回登录界面<br/>
你也可以直接点击回到<a href="http://127.0.0.1:8080/login.html">登录页面</a>
<script type="text/javascript">
setTimeout("ren()",5000);
function ren()
{
 window.location="http://127.0.0.1:8080/login.html";
}

</script>

</body>
</html>

register.php这是与注册页面相对应后台页面


<?php
$link=mysql_connect("localhost","root","207207");//链接数据库
header("Content-type:text/html;charset=utf-8");
if($link)
 {  
   //echo"链接数据库成功";
   $select=mysql_select_db("login",$link);//选择数据库
   if($select)
   {
     //echo"选择数据库成功!";
     if(isset($_POST["sub"]))
     {
       $name=$_POST["username"];
       $password1=$_POST["password"];//获取表单数据
       $password2=$_POST["password2"];
       if($name==""||$password1=="")//判断是否填写
       {
         echo"<script type="."\""."text/javascript"."\"".">"."window.alert"."("."\""."请填写完成!"."\"".")".";"."</script>";
         echo"<script type="."\""."text/javascript"."\"".">"."window.location="."\""."http://127.0.0.1:8080/register.html"."\""."</script>";    
         exit;
       }
       if($password1==$password2)//确认密码是否正确
       {
       $str="select count(*) from register where username="."'"."$name"."'";
       $result=mysql_query($str,$link);
       $pass=mysql_fetch_row($result);
       $pa=$pass[0];
       if($pa==1)//判断数据库表中是否已存在该用户名
       {

echo"<script type="."\""."text/javascript"."\"".">"."window.alert"."("."\""."该用户名已被注册"."\"".")".";"."</script>";
       echo"<script type="."\""."text/javascript"."\"".">"."window.location="."\""."http://127.0.0.1:8080/register.html"."\""."</script>";  
       exit;
       }

$sql="insert into register values("."\""."$name"."\"".","."\""."$password1"."\"".")";//将注册信息插入数据库表中
       //echo"$sql";
       mysql_query($sql,$link);
       mysql_query('SET NAMES UTF8');
       $close=mysql_close($link);
       if($close)
       {
         //echo"数据库关闭";
         //echo"注册成功!";
         echo"<script type="."\""."text/javascript"."\"".">"."window.location="."\""."http://127.0.0.1:8080/return.html"."\""."</script>";    
       }
       }
       else
       {
         echo"<script type="."\""."text/javascript"."\"".">"."window.alert"."("."\""."密码不一致!"."\"".")".";"."</script>";
         echo"<script type="."\""."text/javascript"."\"".">"."window.location="."\""."http://127.0.0.1:8080/register.html"."\""."</script>";    
       }
     }
   }
 }
?>

login.php登录界面对应后台文件


<?php
header("Content-type:text/html;charset=utf-8");
$link=mysql_connect("localhost","root","207207");
if($link)
{
 $select=mysql_select_db("login",$link);
 if($select)
 {
   if(isset($_POST["subl"]))
   {
     $name=$_POST["usernamel"];
     $password=$_POST["passwordl"];
     if($name==""||$password=="")//判断是否为空
     {
       echo"<script type="."\""."text/javascript"."\"".">"."window.alert"."("."\""."请填写正确的信息!"."\"".")".";"."</script>";
       echo"<script type="."\""."text/javascript"."\"".">"."window.location="."\""."http://127.0.0.1:8080/login.html"."\""."</script>";
       exit;
     }
     $str="select password from register where username="."'"."$name"."'";
     mysql_query('SET NAMES UTF8');20       $result=mysql_query($str,$link);
     $pass=mysql_fetch_row($result);
     $pa=$pass[0];
     if($pa==$password)//判断密码与注册时密码是否一致
     {
       echo"登录成功!";
       echo"<script type="."\""."text/javascript"."\"".">"."window.location="."\""."http://127.0.0.1:8080/success.html"."\""."</script>";
     }
     {  
       echo"<script type="."\""."text/javascript"."\"".">"."window.alert"."("."\""."登录失败!"."\"".")".";"."</script>";
       echo"<script type="."\""."text/javascript"."\"".">"."window.location="."\""."http://127.0.0.1:8080/login.html"."\""."</script>";
     }
   }

}
}
?>

自己闲来无事做的还有许多要完善的地方,欢迎大家提问讨论,提供更简便的方法!

标签:登录,注册,php
0
投稿

猜你喜欢

  • Python 列表与链表的区别详解

    2022-01-24 10:10:04
  • Python正则表达式常用函数总结

    2023-07-27 12:37:41
  • MySQL数据库中表的操作详解

    2024-01-26 20:37:27
  • Python与C语言分别完成排序流程

    2023-04-19 08:26:24
  • Python判断telnet通不通的实例

    2023-07-27 14:56:08
  • 用不着妄自菲薄对ASP和ASP程序员的一些话

    2007-08-22 15:09:00
  • 前端html+css实现动态生日快乐代码

    2024-05-10 10:58:12
  • SQLserver 实现分组统计查询(按月、小时分组)

    2024-01-24 12:52:15
  • Python实现使用request模块下载图片demo示例

    2021-10-08 10:13:48
  • Oracle11g简单安装和使用教程

    2024-01-18 19:28:47
  • 5分钟快速掌握JS中var、let和const的异同

    2024-05-09 15:05:49
  • 浅析数据完整性问题

    2007-10-07 12:44:00
  • Pycharm中的Python Console用法解读

    2021-02-20 06:27:36
  • 基于python实现图书管理系统

    2022-11-28 05:46:42
  • Python实现密钥密码(加解密)实例详解

    2022-09-10 12:03:37
  • 创建Shapefile文件并写入数据的例子

    2023-06-21 23:27:12
  • python print出共轭复数的方法详解

    2021-11-15 20:37:57
  • 解决win7操作系统Python3.7.1安装后启动提示缺少.dll文件问题

    2021-08-09 00:56:29
  • MySQL数据库之UPDATE更新语句精解

    2009-03-20 15:21:00
  • Python中random模块用法实例分析

    2023-01-02 19:40:25
  • asp之家 网络编程 m.aspxhome.com