Which PHP function is used to start a new session or to resume an existing session?

  • session_start()
  • start_session()
  • begin_session()
  • resume_session()
The session_start() function in PHP is used to start a new session or resume an existing session. It initializes session variables and allows you to work with user-specific data across multiple pages.
Add your answer
Loading...

Leave a comment

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