Re: [PHP] Why use session_register()?

2008-03-10 Thread Lamonte H
So you wouldn't need to use session_start() when dealing with session_register()? On 3/10/08, Daniel Brown <[EMAIL PROTECTED]> wrote: > > On Mon, Mar 10, 2008 at 12:15 PM, Daniel Brown <[EMAIL PROTECTED]> wrote: > > On Mon, Mar 10, 2008 at 12:08 PM, Lamonte H <[EMAIL PROTECTED]> wrote: > > > Is i

Re: [PHP] Why use session_register()?

2008-03-10 Thread Daniel Brown
On Mon, Mar 10, 2008 at 12:15 PM, Daniel Brown <[EMAIL PROTECTED]> wrote: > On Mon, Mar 10, 2008 at 12:08 PM, Lamonte H <[EMAIL PROTECTED]> wrote: > > Is it necessary to use session_register()? What exactly was the point of > > this function if you can set sessions using $_SESSION it self? > >

Re: [PHP] Why use session_register()?

2008-03-10 Thread Daniel Brown
On Mon, Mar 10, 2008 at 12:08 PM, Lamonte H <[EMAIL PROTECTED]> wrote: > Is it necessary to use session_register()? What exactly was the point of > this function if you can set sessions using $_SESSION it self? > RTFM: http://php.net/session-register.php It's the old way of doing it, an

Re: [PHP] Why use session_register()?

2008-03-10 Thread Greg Donald
On 3/10/08, Lamonte H <[EMAIL PROTECTED]> wrote: > Is it necessary to use session_register()? What exactly was the point of > this function if you can set sessions using $_SESSION it self? session_register() accepts a variable parameter list and does not require a call to session_start() prior t

[PHP] Why use session_register()?

2008-03-10 Thread Lamonte H
Is it necessary to use session_register()? What exactly was the point of this function if you can set sessions using $_SESSION it self?