> howdy
> 
> does any one know where i can view an uptodate session tutorial? so
far I
> have not found any that are up todate.

Sessions are a breeze. Just call session_start() on any page you need to
access the session. You then have a variable called $_SESSION, which is
an array. You can use it as any other array. To save the value "John" to
the session as a "Name", you'd use

$_SESSION['name'] = 'John';

Now, any page you have session_start() on will have the variable
$_SESSION['name'] available to it. 

That's the whole tutorial Use $_SESSION as you would any other variable
and it'll be available to any page that has session_start on it.

---John Holmes...



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to