I am setting sessions in my PHP script, and I would like to check values of stored SESSION variables in google chrome. How can I client-check saved values?
Solution
Important Points:
Session always stored on the server.
If you want to see stored session value use echo $_SESSION['value']; in your script.
If you would like to check values of store data accessible use cookies.