[PHP] Session understanding

2004-09-02 Thread Michael Gale
Hello, Morning .. at least it is where I am :) I have a small issue with sessions, at the moment I am using sessions on our web site and storing the session information in a db_table. It is working great. Right now I am only storing the users ID, name and role in the session data, but

Re: [PHP] Session understanding

2004-09-02 Thread John Holmes
From: Michael Gale [EMAIL PROTECTED] I have a small issue with sessions, at the moment I am using sessions on our web site and storing the session information in a db_table. It is working great. Right now I am only storing the users ID, name and role in the session data, but I would like to

Re: [PHP] Session understanding

2004-09-02 Thread Michael Gale
Hello, The site is for a ticket tracking system, if a CSR has a window open and is working on company A - I would like to save some information about company A in a session variable. Since the session is stored in the DB I figured it was save. Then if the CSR need to look up another

RE: [PHP] Session understanding

2004-09-02 Thread Dan Joseph
I have a small issue with sessions, at the moment I am using sessions on our web site and storing the session information in a db_table. It is working great. Right now I am only storing the users ID, name and role in the session data, but I would like to store other information as well.

Re: [PHP] Session understanding

2004-09-02 Thread John Holmes
From: Michael Gale [EMAIL PROTECTED] The site is for a ticket tracking system, if a CSR has a window open and is working on company A - I would like to save some information about company A in a session variable. Since the session is stored in the DB I figured it was save. Then if the CSR need

Re: [PHP] Session understanding

2004-09-02 Thread raditha dissanayake
Michael Gale wrote: Hello, Morning .. at least it is where I am :) good evening. Close to 10:00pm in tropical paradise (Sri Lanka in case you don't know where that is ) I have a small issue with sessions, at the moment I am using sessions on our web site and storing the session information

Re: [PHP] Session understanding

2004-09-02 Thread raditha dissanayake
Michael Gale wrote: Hello, The site is for a ticket tracking system, if a CSR has a window open and is working on company A - I would like to save some information about company A in a session variable. Since the session is stored in the DB I figured it was save. Then if the CSR need to

RE: [PHP] Session understanding

2004-09-02 Thread Ed Lazor
-Original Message- ... Is there a better way to do this ... I was hoping to not have to pass variables between each page by including them in the URL. How come? It sounds like you're going to end up adding a lot of complexity to the app if you're just trying to hide a specific

Re: [PHP] Session understanding

2004-09-02 Thread James E Hicks III
On Thursday 02 September 2004 10:09 am, Michael Gale wrote: So if I try and store a variable that would be unique to each window it would get over written. Is this a configuration problem ? It sounds to me like you need to turn off session.auto_start in your php.ini file and call