PHP session variables not preserved with ajax

前端 未结 6 1094
臣服心动
臣服心动 2020-12-03 17:36

I have a one page website that uses AJAX to load new php files and update the display.

I start my php session on the main page but when I use ajax to update inner ht

6条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-03 17:54

    You need to start session session_start() in the other PHP file also, the one you are calling through AJAX.

提交回复
热议问题