PHP Session
Moderator: General Moderators
PHP Session
Any one can give information about php sessions variables.
- Christopher
- Site Administrator
- Posts: 13596
- Joined: Wed Aug 25, 2004 7:54 pm
- Location: New York, NY, US
Re: PHP Session
1. It is named $_SESSION
2. It is an array
3. It doesn't contain anything until after session_start() is called
4. A bunch of other details you can read about here
2. It is an array
3. It doesn't contain anything until after session_start() is called
4. A bunch of other details you can read about here
(#10850)
Re: PHP Session
Thanks for this valuable information