PHP Session

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
mmujawer
Forum Newbie
Posts: 2
Joined: Wed Jan 30, 2008 11:45 pm

PHP Session

Post by mmujawer »

Any one can give information about php sessions variables.
User avatar
Christopher
Site Administrator
Posts: 13596
Joined: Wed Aug 25, 2004 7:54 pm
Location: New York, NY, US

Re: PHP Session

Post by Christopher »

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
(#10850)
mmujawer
Forum Newbie
Posts: 2
Joined: Wed Jan 30, 2008 11:45 pm

Re: PHP Session

Post by mmujawer »

Thanks for this valuable information
Post Reply