Search code examples
phpgoogle-chromesessionsession-variables

Google Chrome how to check stored sessions


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:

    1. Session always stored on the server.
    2. If you want to see stored session value use echo $_SESSION['value']; in your script.
    3. If you would like to check values of store data accessible use cookies.