>php教程 >php手册 >在PHP3中实现SESSION的功能(三、示例程序:test_session.php3)

在PHP3中实现SESSION的功能(三、示例程序:test_session.php3)

WBOY
WBOY원래의
2016-06-21 09:05:07887검색

session|程序|示例

require("cookie.inc.php3");
?>
   session_checkid( 20 ); //20分钟后session失效
    //下面你需要设置mysql的连接参数
    mysql_connect('localhost','user','pass') or Die("can't connect to db!");
?>



Session/Cookie-测试


This Page should show how to handle the "session.inc.php3" library


We will use a mask with a record showing routine


if( $show ) {
    if( session_read() ) {
        $username = $session[username];
        $userpass = $session[userpass];
        echo "

session[username]:$username
session[userpass]:$userpass";
    }
}
else{
    $session[username]="yourid";
    $session[userpass]="12345";
    if( !session_write() ) {
        print $sess_error;
    }else{
        echo "

session[username]被设置成:$session[username]
" ;
        echo "session[userpass]被设置成:$session[userpass]
" ;
        echo "测试一下SESSION的作用" ;
    }
}
?>






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