PHP session variables not preserved with ajax

前端 未结 6 1095
臣服心动
臣服心动 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 18:02

    I think you're missing session_start() on the page that Ajax calls.

    You need:

    
    

提交回复
热议问题