Re: PHP Session Issue
what is the code inside db.php? I cant tell whats going on if i cant see all the code. If you are expecting $pilotid to come out of the user's session, you would be better off retrieving it as $_SESSION['pilotid'] as the method you currently use is relying on register_globals being enabled, which is a security risk.
|