SessionStorage Javascript =/= PHP?

二次信任 提交于 2019-12-13 10:05:07

问题


I wrote in SessionStorage a variable "level" with value "4" with Javascript.

sessionStorage.setItem('level', 4);

But when I want to read it with PHP, it makes error :/

echo $_SESSION["level"];

Picture of the problem

How can I resolve this problem ?


回答1:


The JavaScript session storage has absolutely nothing in common with the PHP session. The former is owned by the client (browser) and can be accessed only in the client context, while the later exists on the server and it's connected to the browsing session, usually through a cookie.

You need to do more reading to understand how they both work, but long story short, they have nothing in common.

For JavaScript, in browser: https://developer.mozilla.org/en-US/docs/Web/API/Window/sessionStorage

For PHP: http://php.net/manual/en/intro.session.php




回答2:


sessionStorage is browser's local memory. It does not directly sync with server side code as you are trying with $_SESSION.



来源:https://stackoverflow.com/questions/44888221/sessionstorage-javascript-php

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