How do I continue a session from one page to another with PHP

后端 未结 8 1653
夕颜
夕颜 2020-11-27 07:34

Ok I set up a session... but now how do I make it work on my other pages?

I tried doing

@session_start();

if(isset($_SESSION[\'$userName\'])) {

 ec         


        
8条回答
  •  悲哀的现实
    2020-11-27 07:51

    first page (hello1.php) - Storing Session

    $userName = "Nick";
    session_start();
    $_SESSION['username'] = $userName;
    

    second page (hello2.php) - Output Session

    session_start();
    $userName = $_SESSION['username'];
    echo "$userName";
    

    Output: Nick

提交回复
热议问题