PHP用户指南-cookies部分
作者 佚名技术
来源 NET编程
浏览
发布时间 2012-05-25
ry("users", $query) or die ("Problems .... "); } //End Existing cookie instructions else { //Begin inctructions for no Cookie echo "<html> <head> <Title>Rafi''s Cookie example</title> </head> <body> <a href="reg.php">Click Here for Site Registration</a> </body> </html>"; } //End No Cookie instructions ?> 注意:如果你用的是一个远程mysql服务器或unix服务器,你应用下面语句 mysql_connect ("server","username","password") or die ("Problem connecting to DataBase"); 我们想检查是否一个被指定名字的cookie在html头部分传送,记住,php能转换可识别的cookie为相应的变量,所以我们能检查一个名为"Example" 的变量: <? if (isset($Example)) { //Begin instructions for existing Cookie ... } else { ... } 如果这个cookie存在,我们将计数器加一,并打印用户信息,如果这个cookie不存在,我们建议用户先注册 如果cookie存在,我们执行下面步骤: <? if (isset($Example)) { //Begin instructions for existing Cookie $info = explode("&", $Example); //split the string to variables $FirstName=$info[0]; $LastName=$info[1]; $email=$info[2]; $count=$info[3]; $count++; $CookieString=$FirstName.''&''.$LastName.''&''.$email.''&''.$count; SetCookie ("Example",$CookieString, time()+3600); //setting a new cookie echo" <html> <title>wang example</title> </head> <body> <p>Hello $FirstName $LastName, this is your visit number: $count</p> <p>Your email address is: $email</p> <body> <html>"; mysql_connect() or die ("Problem connecting to DataBase"); //update DB $query = "update info set count=$count where FirstName=''$FirstName'' and LastName=''$LastName'' and email=''$email''"; $result = mysql_db_query("users", $query) or die ("Problems .... "); } //End Existing cookie instructions 上面的程序有3个主要部分:首先取得cookie值,用explode函数分成不同的变量,增加计数器,并设一新cookie.接着用html语句输出用户信息。最后,用新的计数器值更新数据库。 如果这个cookie不存,下面的程序将被执行: else { //Begin inctructions for no Cookie echo "<html> <head> <Title>Rafi''s Cookie example</title> </head> <body> <a href="reg.php">Click Here for Site Registration</a> </body> </html&g |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
关于PHP用户指南-cookies部分的所有评论