PHP Sessions: Explanation please?

前端 未结 2 1206
说谎
说谎 2020-12-11 12:57

I have been learning PHP for a little bit now, and it has been going really easy for the most part. The only thing I\'m hung up on is getting sessions to work. Google has be

2条回答
  •  死守一世寂寞
    2020-12-11 13:37

    You have to call session_start() as early as possible, and definitely before using $_SESSION, which would otherwise be empty.

提交回复
热议问题