Set Session variable using javascript in PHP

后端 未结 9 958
刺人心
刺人心 2020-11-27 21:23

Is it possible to set PHP session variables using Javascript?

9条回答
  •  春和景丽
    2020-11-27 21:55

    You can't directly manipulate a session value from Javascript - they only exist on the server.

    You could let your Javascript get and set values in the session by using AJAX calls though.

    See also

    • Javascript and session variables
    • jQuery click event to change php session variable

提交回复
热议问题