网页记住用户名,就是我们经常会用到的,登录下面有一个复选框,可以设置用户7天内或1个月不需要登录,只要你进行本网站系统查询cookie是否有相差用户名与密码如果是就把信息提取再到数据库中查询,如果cookie中的用户名与密码是一样的就实现用户自动登录了,PHP实例代码如下:
- <?php
- error_reporting(0);
- session_start();
- ?>
- <!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
- <html xmlns="http://www.phpfensi.com/1999/xhtml">
- <head>
- <meta http-equiv="content-type" content="text/html; charset=gb2312" />
- <title>网页登录中实现记住用户名和密码的功能(完成自动登录)</title>
- </head>
- <body>
- <?
- $uid = $_cookie['uid'];
- $pwd = $_cookie['uid'];
- if( $uid !='' && $pwd !='' )
- {
-
- $_session['uid'] ='abc';
- }
- if( $_session['uid'] )
- {
- echo '会员中心,发表文章,到http://www.phpfensi.com去玩';
- }
- else
- {
- ?>
- <form id="form1" name="form1" method="post" action="">
- <p>
- <label for="uid"></label>
- <input type="text" name="uid" id="uid" />
- </p>
- <p>
- <label for="pwd"></label>
- <input type="text" name="pwd" id="pwd" />
- </p>
- <p>
- <input type="checkbox" name="checkbox" id="checkbox" value="7" />
- <label for="checkbox"></label>
- 一周内不用登录
- </p>
- <p>
- <input type="submit" name="button" id="button" value="登录" />
- </p>
- <p> </p>
- </form>
- <?
- }
- ?>
- </body>
- </html>
-
- <?php
- if( $_post )
- {
- $info = $_post;
- if( $info['uid'] !='' && $info['pwd'] !='')
- {
-
-
- if( intval($info['checkbox']) )
- {
- setcookie('uid',$info['uid'],time()+3600*24*7,'/','192.168.0.118');
- setcookie('pwd',$info['pwd'],time()+3600*24*7,'/','192.168.0.118');
- }
- $_session['uid'] ==$info['uid'];
- }
- }
- ?>
|