• PHP Server Side Sessions

      0 comments

    Where the session values are stored? Server side or client side?

    Session is stored in the server side.

  • Session_register and $_session

      1 comment

    What is the difference between session_register and $_session?

    session_register() is used for register one or more global variables with the current session. While $_SESSION[] array is used for storing one or more variables with in the current session array. session_register() depends upon register_global is enable