程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> php注冊和登錄界面的實現案例(推薦),登錄界面案例

php注冊和登錄界面的實現案例(推薦),登錄界面案例

編輯:關於PHP編程

php注冊和登錄界面的實現案例(推薦),登錄界面案例


當初我覺得一個網站上注冊和登錄這兩個功能很神奇,後來自己研究一下發現其實道理很簡單,接下來看一下怎麼實現的吧。。。。

我在我的電腦上建了幾個文件:

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">
賬  戶:
<input type="text" name="username"><br/><br/>
密  碼:
<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注冊和登錄界面的實現案例(推薦)全部內容了,希望大家多多支持幫客之家~

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved