PHP Session variables disappearing?

前端 未结 1 2032
萌比男神i
萌比男神i 2021-01-29 07:29

I have 3 pages, login.php, login_validate.php and userhome.php. My issue is that the login information is being correctly passed to login_validate.php, but seems to disappear wh

1条回答
  •  走了就别回头了
    2021-01-29 07:37

    You need to call session_start() in every script that uses sessions (and before the headers are sent).

    0 讨论(0)
提交回复
热议问题