php实现登录功能

2024-03-22

1、连接和创建数据库

$userName='root';

$passWord='';

$host='localhost';

$dataBase='login';

//创建连接

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

2、前台页面

<!DOCTYPE html>

<html>

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

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

<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 style="background: #1E9FFF">

<div style="position: absolute; left: 50%; top: 50%;width: 500px; margin-left:-250px; margin-top: -200px">

   <div style="background: #FFFFFF; padding: 20px;border-radius: 4px;box-shadow: 5px 5px 20px #444444" >

       <div>

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

               <div style="color: gray">

                   <h2>注册登录系统</h2>

               </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、判断用户名密码的正确性

<?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>";

   };


发表评论

  最新评论
© 2024-2030 yunmo.pub 版权所有   |   粤ICP备2023158145号-1
我可是有脾气的!