溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

使用php編寫一個登錄頁面

發(fā)布時間:2021-02-08 17:03:18 來源:億速云 閱讀:141 作者:Leah 欄目:開發(fā)技術

使用php編寫一個登錄頁面?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

1、首先自然是連接和創(chuàng)建數據庫

這部分我寫在model.php中

$userName='root';

$passWord='';

$host='localhost';

$dataBase='login';

//創(chuàng)建連接

$conn=mysqli_connect($host,$userName,$passWord,$dataBase);

2、寫前臺頁面,為了熟練前端框架,使用layui框架界面,前面有一段js代碼,來判斷用戶名密碼輸入是否為空。

<!DOCTYPE html>

<html>

<script src="layui.js";></script>

<link rel="stylesheet" href="layui.css" rel="external nofollow" ;>

<head>

  <meta charset="UTF-8">

  <title>注冊登錄</title>

</head>

<script language=JavaScript>

  function InputCheck()

  {

    if (Login.username.value == "")

      {

       alert("請輸入用戶名!");

       Login.username.focus();

       return (false);

       }

    if (Login.password.value == "")

       {

        alert("請輸入密碼!");

        Login.password.focus();

      return (false);

       }

     }

</script>

<body >

<div >

  <div  >

    <div>

      <form action="login.php" method="post" name="Login" οnsubmit="return InputCheck()">

        <div >

          <h3>注冊登錄系統(tǒng)</h3>

        </div>

        <hr>

        <div>

          <label>用戶名</label>

          <div>

            <input type="text" name="username" id="username" placeholder="用戶名"

            autocomplete="off">

          </div>

        </div>

        <div>

          <label>密  碼</label>

          <div>

            <input type="password" name="password" id="password" placeholder="密碼"

            autocomplete="off">

          </div>

        </div>

        <div>

          <div;>

            <input type="submit" value="登錄">

            <input type="button" value="注冊">

          </div>

        </div>

      </form>

    </div>

  </div>

</div>

</body>

</html>

3、login.php 用來判斷用戶名密碼的正確性,關于這一點我看了網上的很多方法,五花八門,在我沒遇到障礙之前,我決定先用簡單的形式,就是用sql語句查詢用戶名配上密碼的結果集,結果集為空,則不存在該用戶。

<?php

//數據庫連接

require_once 'model.php';

//從登錄頁接受來的數據

$name=$_POST['username'];

$pwd=$_POST['password'];

$sql="select id,username,password from user where username='$name' AND password='$pwd';";

$result=mysqli_query($conn,$sql);

$row=mysqli_num_rows($result);

 

if(!$row){

 

    echo "<script>alert('密碼錯誤,請重新輸入');location='login.html'</script>";

 

  }

  else{

 

    echo "<script>alert('登錄成功');location='123'</script>";

  };

4、文件目錄

使用php編寫一個登錄頁面

關于使用php編寫一個登錄頁面問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業(yè)資訊頻道了解更多相關知識。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

php
AI