PHP Session not Saving

前端 未结 9 1093
情话喂你
情话喂你 2020-12-03 17:39

I have this written at the very first line on every page of my website.

include(\"restd.php\");

and restd.php contains the following lines

9条回答
  •  旧巷少年郎
    2020-12-03 18:05

    Check maybe your session path does not exist so you can save PHP session path using:

    ini_set(' session.save_path','SOME WRITABLE PATH');
    

提交回复
热议问题