PHP session seemingly not working

后端 未结 3 1417
谎友^
谎友^ 2020-12-02 01:08

Session variables are apparently not working for me. I don\'t know what I\'m doing wrong. This is the code that I\'m using to check for a valid password:

if          


        
相关标签:
3条回答
  • 2020-12-02 01:51

    I just got back from fixing that...added session_start() right at the top of the file - even before the <html> tag. Doing session_start() in the middle gives errors...don't know why. I'm new to this. Thanks for your prompt response though.

    0 讨论(0)
  • 2020-12-02 01:52

    Session_start(); has to be placed before any header that will be sent out e.g. before any HTML tag on the php file.

    0 讨论(0)
  • 2020-12-02 01:55

    You know that you've got to write session_start() before you use the $_SESSION variable in any request, right? It looks like you haven't put it in index.php anywhere.

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