PHP session seemingly not working

|▌冷眼眸甩不掉的悲伤 提交于 2019-11-27 09:34:32

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.

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

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.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!