How to use session inside webpages?

后端 未结 3 1298
清歌不尽
清歌不尽 2020-12-11 13:50

I am trouble with session; I know it theoretically but I encountered with it how to use session , transferring username to

3条回答
  •  再見小時候
    2020-12-11 14:13

    Always start session page with session_start().If you want to use session first assign session a value like this :

    session_start();
    $_SESSION['username'] = 'Mahmood';
    

    And when you want to access get it like this :

    echo $_SESSION['username'];
    OR
    $username = $_SESSION['username'];
    

    And unset this session like this :

    unset($_SESSION['username']);
    

    Some Details are here.

提交回复
热议问题