Here is my problem,
I'm using sessions and session variables. First off, I have 'session_start()' at the beginning of every page in my site. I set $SESSION[unid] = 'x' in my index.php and go to my main page. My session variable lasts across this page load. However, if I go anywhere else, I still have the same session id, but I lose my $SESSION[unid] variable. So, it only lasts one click.
Its not anything in the php.ini file, because someone else is doing the same thing on the same server and his works fine.
Does anyone have any ideas?