PHP session empty

后端 未结 4 625
半阙折子戏
半阙折子戏 2020-12-07 06:12

I made a simple login function in PHP. My problem is that there are no session attributes when the browser hits page login_success.php

After i store

4条回答
  •  生来不讨喜
    2020-12-07 06:29

    Configure your php.ini like this:

    session.auto_start = 1;
    

    Or run following command at your first line:

    ini_set('session.auto_start', 1);
    

提交回复
热议问题