okay i'll explain a bit
i want my sessions to store some values but instead of storing them their
doing nothing at all here's some code
// beginning of registering of values
session_start();
session_register("fu");
session_register("bar");
$fu = "fu";
$bar = "bar";
// end of registering values
//getting values
$fu = $HTTP_SESSION_VARS["fu"];
echo $fu;
//end of getting values
"R. Lindeman" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> i have a problem with PHP sessions and maybe some of you could help what
do
> i need in my php.ini to get them to work !!!
>
>
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php