Jeff Benetti wrote: ... > Am I correct that if two people are logged on using two different languages > that the session var will keep track of the different users (by IP I assume) > and the server won’t mess up? yes, the contents of $_SESSION are stored per user. this is tracked by way of a session cookie (which is just another cookie really) that PHP (under normal circumstances) automatically sends and parses (when you call session_start()). > Anyway thanks everyone for all the great help, I’m on a nearly vertical > learning curve here and it’s great to have this community to draw on. I’m > pretty much working in a vacuum otherwise. > any room for that wizard named Brad in your vacuum? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php