[PHP典型模塊與項目實戰大全]-第六章(註冊和登錄模組:test.php)
[PHP典型模塊與項目實戰大全]-第六章(註冊和登錄模組:test.php)
code2html:http://tohtml.com/
test.php-測試網頁
<?php
header("Content-Type:text/html; charset=utf-8");
//登錄狀態測試腳本
require('is_login.php');
echo'您已登錄成功:)';
//unset( $_SESSION['login']);
?>
|