亚洲国产日韩欧美在线a乱码,国产精品路线1路线2路线,亚洲视频一区,精品国产自,www狠狠,国产情侣激情在线视频免费看,亚洲成年网站在线观看

php使用cookie實(shí)現(xiàn)記住用戶名和實(shí)現(xiàn)代碼

時(shí)間:2025-08-12 03:08:05 php語言

php使用cookie實(shí)現(xiàn)記住用戶名和實(shí)現(xiàn)代碼

  文章主要介紹了php使用cookie實(shí)現(xiàn)記住用戶名和密碼實(shí)現(xiàn)代碼,本文直接給出實(shí)現(xiàn)代碼,需要的朋友可以參考下。

  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

  <form id="form1" 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>記住用戶名和密碼</b></td>

  </tr>

  </thead>

  <tr align="center">

  <td>用 戶 名:</td>

  <td><input type="text" value="<?php echo $_COOKIE['name'];?>" name="name"></td>

  </tr>

  <tr align="center">

  <td>密碼:</td>

  <td><input type="password" name="password" value="<?php echo $_COOKIE['password']?>"></td>

  </tr>

  <tr align="center">

  <td>記住用戶名和密碼</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="提交" /></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=\"remember.php\">返回</a>";

  ?>

【php使用cookie實(shí)現(xiàn)記住用戶名和實(shí)現(xiàn)代碼】相關(guān)文章:

php用cookie實(shí)現(xiàn)記住登錄狀態(tài)02-02

php的curl實(shí)現(xiàn)get和post的代碼08-30

PHP滾動日志的代碼實(shí)現(xiàn)09-30

php實(shí)現(xiàn)無限級分類實(shí)現(xiàn)代碼10-05

php實(shí)現(xiàn)cookie加密的方法有哪些03-04

PHP中如何實(shí)現(xiàn)crontab代碼07-15

php進(jìn)度條實(shí)現(xiàn)代碼07-12

PHP實(shí)現(xiàn)大文件上傳源代碼09-20

PHP中使用cURL實(shí)現(xiàn)Get和Post請求03-07