本文實例講述了PHP會話控制。分享給大家供大家參考,具體如下:
關于cookie和session的測試代碼:
<?phpsession_start();define('u','a');define('p','1');if (isset($_GET['r']) && $_GET['r']== 1) {  unset($_COOKIE['username']);  unset($_COOKIE['password']);  unset($_SESSION['valid_login']);}if (isset($_POST['username']) && isset($_POST['password'])) {  $username = $_POST['username'];  $password = $_POST['password'];  if ($username == u && $password == p) {    $_SESSION['valid_login'] = 1;    setcookie('username', $username);    setcookie('password', $password);  } else {    echo 'incorrect u or p';  }}?><?phpif (isset($_SESSION['valid_login'])) {  printf('welcom, %s', $_COOKIE['username']);} else {?><form action="" method="post">  <input type="text" name="username" value="" />  <input type="password" name="password" value="" />  <input type="submit" /></form><?php}?><br /><a href="cookie_session.php" title="">refresh</a><br /><a href="cookie_session.php?r=1" title="">clear</a>希望本文所述對大家PHP程序設計有所幫助。
新聞熱點
疑難解答
圖片精選