Sorry about that I should have been more detailed.
session_start() and all of my session_register() calls happen on login.php
here is a sample session_register call.
session_register("currentbid");
I am under the impression that I only need one session register call.
Jed
"Kevin Stone" <[EMAIL PROTECTED]>
07/08/2002 02:00 PM
To: <[EMAIL PROTECTED]>
cc: <[EMAIL PROTECTED]>
Subject: Re: [PHP] UNSETing Session Variables
$_SESSION['currentbid'] isn't available until you do session_start();
session_start();
unset($_SESSION['currentbid']);
Or is this what does connect.inc contains?
-Kevin
----- Original Message -----
*snip
please see previous messages for this information
snip*