>php教程 >php手册 >PHP学习系列之会话控制

PHP学习系列之会话控制

WBOY
WBOY원래의
2016-06-06 19:57:121066검색

欢迎进入Linux社区论坛,与200万技术人员互动交流 >>进入 header("Content-type:text/html;charset=utf-8"); ? form method="post" action="demo_setCookie2.php" name:input type="text" name="username" input type="submit" value="登录" /form ?php /

欢迎进入Linux社区论坛,与200万技术人员互动交流 >>进入

 

  header("Content-type:text/html;charset=utf-8");

  ?>

  

  name:

  

  

  

  /**

  * demo_setCookie2.php

  */

  if(isset($_POST["username"]) && $_POST["username"] == "benjamin"){

  //正确,生成一个cookie 再跳转

  setCookie("username","Benjamin");

  header("Location:demo_setCookieSuccess.php");

  }else{

  header("Location:demo_setCookie.php");

  }

  ?>

  

  /**

  * demo_setCookieSuccess.php

  */

  header("Content-type:text/html;charset=utf-8");

  if (isset($_COOKIE["username"])) {

  echo "欢迎光临".$_COOKIE["username"];

  }else{

  echo "非法登录";

  }

  ?>

  [1] [2] 

PHP学习系列之会话控制

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.