Is it possible to register and store more than 1 session variable for a particular session, or would I have to find some alternative for the othre variables, like passing it to each page in a hidden field?
Cheers
Cheers

<?php
session_start();
$_SESSION['valid_user'] = 'whatever' ;
$_SESSION['IP'] = $_SERVER['REMOTE_ADDR'] ;
//etc
?>
and 2 to check the value
<?php
if( $_SESSION['valid_user'] == 'whatever' ) { /*etc*/ } ;
?>
Comment