In PHP, you can start a session using the session_start() ______.

  • function
  • method
  • statement
  • command
In PHP, you can start a session using the session_start() function. This function is called as a statement to initialize a new session or resume an existing session. It needs to be called at the beginning of your PHP script before any session variables are accessed. Refer to: http://php.net/manual/en/function.session-start.php
Add your answer
Loading...

Leave a comment

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