Thread: PHP Sessions
View Single Post
  #2 (permalink)  
Old 07-03-09, 07:19 PM
Jcbones Jcbones is offline
Coding Addict
 
Join Date: Mar 2009
Location: North Carolina, USA
Posts: 281
Thanks: 3
Thanked 5 Times in 5 Posts
PHP Code:

session_start
(); //must be called first on the page, very top before any output...^yes way up there...

//Store or call a session variable.  Yes, it is a superGlobal.
$_SESSION['variable']; 
That is the basics.
Reply With Quote