03-01-2008, 01:01 AM
|
#10 (permalink)
|
|
The Frequenter
Join Date: Apr 2005
Location: South UK
Posts: 483
Thanks: 51
|
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
|
|
|