ID: 10604
Updated by: sbergmann
Reported By: [EMAIL PROTECTED]
Old-Status: Open
Status: Closed
Bug Type: *Session related
Operating system: 
PHP Version: 4.0.4pl1
Assigned To: 
Comments:

> session_unregister('toto');
> session_register('toto');
> when this is done, i got the same values from toto

Sure, session_unregister() just 'removes' $toto from the session, it doesn't unset() 
it.

Your other code looks also weird to me. So, I'm closing this bug.

Previous Comments:
---------------------------------------------------------------------------

[2001-05-02 05:53:39] [EMAIL PROTECTED]
Hi and sorry to disturb but i have a pb 
and i dont know if is it a bug or something
else, hope is not a bug!

maybe the problem comes from the compilation,
maybe from me, but when i do :
-------------- SESSION PB -------------------
session_start();
$ID=session_id(); $WHAT=$pass.$ID;
if(!$SID){
   session_register("SID");
   $SID=md5($WHAT);
}else{
   $LOCAL_SID=md5($WHAT);
   if($SID!=$LOCAL_SID){
          session_destroy();
          ?><script>alert("ops...");</script><?
   }
}
----------------------------------------------
and i do :
echo session_encode();
i get :
----------------------------------------------
usr_pro|s:1:"1";usr_key|s:1:"1";connected|i:1;usr_log|s:3:"flo";!SID|secteur|s:1:"2"; 
with SID unset...

and other pb is that i cannot update a session var:
session_unregister('toto');
session_register('toto');

when this is done, i got the same values from toto.... :-(

thanks for all !
regards,

José PLANS


---------------------------------------------------------------------------



ATTENTION! Do NOT reply to this email!
To reply, use the web interface found at http://bugs.php.net/?id=10604&edit=2


-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to