[PHP] session objects crossing applications

2003-07-17 Thread Jason
I need help. I've got two copies of my application.foobar and foobar_dev When I go to http://foo.com/foobar/ a session is created and a database connection class is established and placed into this session. Then if within the same browser (using internet explorer) I go to

Re: [PHP] session objects crossing applications

2003-07-17 Thread Marek Kilimajer
Set up cookie parameters before calling session_start(): void session_set_cookie_params ( int lifetime [, string path [, string domain [, bool secure]]]) Jason wrote: I need help. I've got two copies of my application.foobar and foobar_dev When I go to http://foo.com/foobar/ a session is

Re: [PHP] session objects crossing applications

2003-07-17 Thread Mike Migurski
foobar and foobar_dev are suppose to point to different databases, but other than that all is identical. If I open a new internet explorer window via the windows Start menu all is fine. I thought if the url base is different then the session would be different? This is how it is with JSP. Am I