Hi, I have put a lot of time into the problem I am having and I think I have figured out what is happening. I am storing a bunch of information through session variable and also some in cookies. At first I had it all in cookies (I know that this was not so smart now) but apparently I ran out of cookie space and I started loosing data that was stored. I think I am limited to like 20 cookie variables. So I then switched most of the saved data over to session variables but I am still loosing the data saved in the session variables the same way I was with the cookies. I think my session information must all be stored as cookies which is causing me to loose my data the same way (it seems to run out of variable space).
Is there a way to make sure my data is being saved on the server in the session file and not being saved as a cookie? Is it done in php.ini? Is there a way to do it when the session is first called?
Thanks!