View Single Post
Old 03-01-2008, 01:01 AM   #10 (permalink)
Alan @ CIT
Member of the Month
The Frequenter
Member of the Month Top Contributor 
 
Alan @ CIT's Avatar
 
Join Date: Apr 2005
Location: South UK
Posts: 483
Thanks: 51
Alan @ CIT is on a distinguished road
Default

webtuto: Guestbook looks nice, good job

Steven: Sessions are pretty straight forward for simple uses:

PHP Code:
session_start();
$_SESSION['bar'] = 'foo';
$_SESSION['something'] = 4
Just call session_start() at the top of each page and you can access all variables in $_SESSION[].

There are more options if you need them but that's the basics

Alan
Send a message via MSN to Alan @ CIT
Alan @ CIT is offline  
Reply With Quote
The Following User Says Thank You to Alan @ CIT For This Useful Post:
StevenF (03-01-2008)