Jump to content

[SOLVED] Sessions (session_register() vs $_SESSION[])


hostfreak

Recommended Posts

I see a good bit of people using session_register(). I personally always use $_SESSION[] array... from my understanding, session_register() relies on register_globals. So really, in php PHP 6.0.0 it will be depreciated (seeing how register_globals will be removed). I don't even understand why anyone would use it in the first place, over $_SESSION[]

Link to comment
Share on other sites

before in order to create a session in the register_global's era you'd have to use session_register to register a session variable, as $_SESSION didn't even exist back then. There were no pre-defined  variables as there is now to define a session without calling session_register.

 

Now PHP has moved on and register_globals is now depreciated and so no need to use session_register. Some people may still use session_register because of old habits back in the register_global's era, or has read up on an old tutorial for using PHP sessions.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.