Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.3k views
in Technique[技术] by (71.8m points)

SessionStorage Javascript =/= PHP?

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 ?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...