SoFunction
Updated on 2025-04-04

PHP uses cookies to implement the implementation code

PHP uses cookies to implement the implementation code

Updated: April 27, 2015 10:22:59 Submission: junjie
This article mainly introduces the implementation code of PHP using cookies to remember the username and password. This article directly gives the implementation code. Friends who need it can refer to it.
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<form  name="form1" method="post" action="check_remember.php">
<table width="300" border="1" align="center" cellpadding="0" cellspacing="0">
<thead>
 <tr> 
 <td colspan="2" align="center"><b>Remember username and password</b></td> 
 </tr>
</thead> 
 <tr align="center">
 <td>use household name:</td>
 <td><input type="text" value="<?php echo $_COOKIE['name'];?>" name="name"></td>
 </tr>
 <tr align="center">
 <td>password:</td>
 <td><input type="password" name="password" value="<?php echo $_COOKIE['password']?>"></td>
 </tr>
 <tr align="center">
 <td>Remember username and password</td>
 <td><?php if($_COOKIE['remember'] == 1){?><input type="checkbox" name="remember" value="1" checked><?php }else{($_COOKIE['remember'] == "")?><input type="checkbox" name="remember" value="1"><?php }?></td>
 </tr>
 <tr align="center">
 <td colspan="2"><input type="submit" name="Submit" value="submit" /></td>
 </tr>
</table>
</form>
 
check_remember.php
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<?php
 $name = $_POST['name'];
 $password = $_POST['password'];
 $remember = $_POST['remember'];
 if($remember == 1){
 setcookie('name',$name,time()+3600);
 setcookie('password',$password,time()+3600);
 setcookie('remember',$remember,time()+3600);
 }else{
 setcookie('name',$name,time()-3600);
 setcookie('password',$password,time()-3600);
 setcookie('remember',$remember,time()-3600);
 }
 echo "<a href=\"\">return</a>";
?>

  • php
  • remember
  • Username
  • password

Related Articles

  • Simple implementation of PHP merging multiple JS and CSS files based on incoming parameters

    This article mainly introduces the simple implementation of PHP merging multiple JS and CSS files. This article uses a relatively simple method, focusing on revealing the implementation principle. Friends who need it can refer to it.
    2014-06-06
  • Solutions to the conflict between ThinkPHP and UCenter interfaces

    This article mainly introduces the solution to the conflict between ThinkPHP and UCenter interfaces, analyzes the reasons for the conflict between thinkPHP and UCenter interfaces, and the relevant operation steps and implementation techniques for resolving conflicts through renaming. Friends who need it can refer to it
    2016-07-07
  • Simple example of php for loop

    Below, the editor will bring you a simple example of php for recycling. The editor thinks it is quite good, so I will share it with you now and give you a reference. Let's take a look with the editor
    2016-06-06
  • Thinkphp method to customize the generation of thumbnail sizes

    This article mainly introduces Thinkphp's method to customize the generation of thumbnail sizes. This article introduces it to you very well and has certain reference value. Friends who need it can refer to it.
    2019-08-08
  • The most basic operation tutorial for using Queue in Laravel

    The Laravel queue service provides a unified API for various backend queues. The following article mainly introduces the most basic operation tutorial on using Queue in Laravel. The article introduces the example code in detail. Friends who need it can refer to it. Let’s take a look together.
    2017-12-12
  • How to convert Chinese characters into pinyin based on PHP

    Converting Chinese characters to pinyin is one of the operating tasks that programmers often use. You often see iOS converting Chinese characters into pinyin, Excel Chinese characters into pinyin, Excel Chinese characters into pinyin, etc. This article introduces you to how to convert Chinese characters into pinyin based on PHP. Interested friends can learn together.
    2015-12-12
  • Install ThinkPHP5 using Composer in Windows environment

    This article will share with you the specific steps and methods for using Composer to install ThinkPHP5 in Windows environment. It is very simple and practical. Friends who need it can refer to it.
    2018-05-05
  • Example of php shopping cart

    Searched online, simple and easy to understand. Cookie stores the shopping cart ID and db stores the shopping cart data.
    2009-05-05
  • Action parameter binding of new features of ThinkPHP3.1

    The Action parameter binding function of ThinkPHP3.1 provides parameter binding support for URL variables and operation methods. This function can make your operation method definition and parameter acquisition clearer, and also facilitates the call of operation methods across modules. Friends who need it can refer to it.
    2014-06-06
  • PHP generates ICO icons based on yii framework

    This article shares with you two codes for generating ICO icons for PHP. The first one is based on the YII framework, and the second one is written pure PHP. They are all very good. Friends who need it can refer to it.
    2015-11-11

Latest Comments