PHP Session not Saving

前端 未结 9 1083
情话喂你
情话喂你 2020-12-03 17:39

I have this written at the very first line on every page of my website.

include(\"restd.php\");

and restd.php contains the following lines

9条回答
  •  离开以前
    2020-12-03 17:51

    you need declare $_SESSION['id'] :

    file1.php

    session_start();
    
    $_SESSION['id'] = '123'  
    

    file2.php

    include 'file1.php'
    
    if(isset($_SESSION['id']))
    {
    
    }
    else
    {
      header("location:index.php");
    }
    

提交回复
热议问题