Re: [PHP] Multiple session_start()s / Is it a problem??

2004-11-10 Thread Greg Donald
On Wed, 10 Nov 2004 10:40:17 -0500, Al [EMAIL PROTECTED] wrote: Of course I can simply use @session_start() to negate the Notice; but, I want to be certain this is good practice. I haven't tried it but you might try wrapping session_start() that with if ( !isset ($_SESSION) ) if you don't

[PHP] Multiple session_start()s / Is it a problem??

2004-11-10 Thread Al
Is there a problem issuing multiple session_start()s for a given script? I can't find anything in the manual that says one way or the other. I have some scripts that call more than one functions include file and for convenience put a session_start() on each one. This gives me a Notice error. Of

Re: [PHP] Multiple session_start()s / Is it a problem??

2004-11-10 Thread Klaus Reimer
Al wrote: Is there a problem issuing multiple session_start()s for a given script? I can't find anything in the manual that says one way or the other. Then you have not looked good enough ;-) I have some scripts that call more than one functions include file and for convenience put a