Posted: Wed Mar 02, 2005 10:07 am
general sesison tips:
- session_start() must be on all pages where sessions are to be accessed (unless you have auto-start enabled, not likely)
- session_start() must be called before any output. This includes whitespace (carriage returns, spaces, tabs) any html, output from php.. anything, almost literally.
- do not use session_register() and related functions if you use $_SESSION
- you can store session data in the database if that helps... read the Useful Posts thread linked to in my signature for details