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

后端 未结 8 1617
夕颜
夕颜 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:55

    Make sure session_start() is at the top of every page you wish to use sessions on. Then you can refer to session variables just like in your example.

提交回复
热议问题