php使用cookie實現(xiàn)記住用戶名和密碼實現(xiàn)代碼
來源:易賢網(wǎng) 閱讀:2319 次 日期:2015-04-28 14:54:36
溫馨提示:易賢網(wǎng)小編為您整理了“php使用cookie實現(xiàn)記住用戶名和密碼實現(xiàn)代碼”,方便廣大網(wǎng)友查閱!

這篇文章主要介紹了php使用cookie實現(xiàn)記住用戶名和密碼實現(xiàn)代碼,本文直接給出實現(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>";

?>

更多信息請查看IT技術(shù)專欄

更多信息請查看網(wǎng)絡編程

2025國考·省考課程試聽報名

  • 報班類型
  • 姓名
  • 手機號
  • 驗證碼
關(guān)于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡要咨詢 | 簡要咨詢須知 | 新媒體/短視頻平臺 | 手機站點 | 投訴建議
工業(yè)和信息化部備案號:滇ICP備2023014141號-1 云南省教育廳備案號:云教ICP備0901021 滇公網(wǎng)安備53010202001879號 人力資源服務許可證:(云)人服證字(2023)第0102001523號
聯(lián)系電話:0871-65099533/13759567129 獲取招聘考試信息及咨詢關(guān)注公眾號:hfpxwx
咨詢QQ:1093837350(9:00—18:00)版權(quán)所有:易賢網(wǎng)