You can access the session variables in PHP using the $_SESSION ______ array.

  • superglobal
  • global
  • reserved
  • predefined
The $_SESSION superglobal array in PHP is used to access session variables. It is a predefined superglobal array that allows you to store and retrieve data across multiple pages or requests within the same session. The values stored in $_SESSION are specific to each individual user session. For further information, visit: http://php.net/manual/en/reserved.variables.session.php
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *