Home Backend Development PHP Tutorial Implementation case of php registration and login interface (recommended)_php example

Implementation case of php registration and login interface (recommended)_php example

Dec 05, 2016 pm 01:28 PM

At first, I thought the two functions of registration and login on a website were magical. Later, after doing some research on my own, I found that the principle is actually very simple. Let’s take a look at how to implement it. . . .

I created a few files on my computer:

login.html (login page)

register.html (registration page)

success.html (jump page after successful login)

return.html (registration success page)

login.php

register.php

The login interface, registration interface and success.html are not there

Everything is html markup as follows:

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

<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>

Copy after login

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

<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>

Copy after login

return.html is the page that is displayed after successful registration. There is a js code in it that is used to return to the login interface regularly

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

<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>

Copy after login

register.php This is the backend page corresponding to the registration page

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

<&#63;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>";   

        }

      }

    }

  }

&#63;>

Copy after login

login.php login interface corresponds to the background file

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

<&#63;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>";

      }

    }

     

  }

}

&#63;>

Copy after login

I still have a lot to improve when I have nothing to do. Everyone is welcome to ask questions and discuss and provide easier methods!

The above is the entire content of the PHP registration and login interface implementation case (recommended) brought by the editor. I hope you will support Script Home~

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Apr 05, 2025 am 12:04 AM

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

How does session hijacking work and how can you mitigate it in PHP? How does session hijacking work and how can you mitigate it in PHP? Apr 06, 2025 am 12:02 AM

Session hijacking can be achieved through the following steps: 1. Obtain the session ID, 2. Use the session ID, 3. Keep the session active. The methods to prevent session hijacking in PHP include: 1. Use the session_regenerate_id() function to regenerate the session ID, 2. Store session data through the database, 3. Ensure that all session data is transmitted through HTTPS.

Describe the SOLID principles and how they apply to PHP development. Describe the SOLID principles and how they apply to PHP development. Apr 03, 2025 am 12:04 AM

The application of SOLID principle in PHP development includes: 1. Single responsibility principle (SRP): Each class is responsible for only one function. 2. Open and close principle (OCP): Changes are achieved through extension rather than modification. 3. Lisch's Substitution Principle (LSP): Subclasses can replace base classes without affecting program accuracy. 4. Interface isolation principle (ISP): Use fine-grained interfaces to avoid dependencies and unused methods. 5. Dependency inversion principle (DIP): High and low-level modules rely on abstraction and are implemented through dependency injection.

How to automatically set permissions of unixsocket after system restart? How to automatically set permissions of unixsocket after system restart? Mar 31, 2025 pm 11:54 PM

How to automatically set the permissions of unixsocket after the system restarts. Every time the system restarts, we need to execute the following command to modify the permissions of unixsocket: sudo...

How to debug CLI mode in PHPStorm? How to debug CLI mode in PHPStorm? Apr 01, 2025 pm 02:57 PM

How to debug CLI mode in PHPStorm? When developing with PHPStorm, sometimes we need to debug PHP in command line interface (CLI) mode...

Explain late static binding in PHP (static::). Explain late static binding in PHP (static::). Apr 03, 2025 am 12:04 AM

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

How to send a POST request containing JSON data using PHP's cURL library? How to send a POST request containing JSON data using PHP's cURL library? Apr 01, 2025 pm 03:12 PM

Sending JSON data using PHP's cURL library In PHP development, it is often necessary to interact with external APIs. One of the common ways is to use cURL library to send POST�...

See all articles