Hi list,

I'm in a serious trouble that I couldn't figure out an escape. I have
basically to html pages that pass variables to each other by get method. So
I register some vars in sessions. in one o this pages i have.

if(isset($HTTP_GET_VARS['erase_data'])) {
    session_unregister('data');
}

but the code doesn't erase the var from session, and If i use
session_unset('data') it erases all vars from session, that I don't want to.
How to solve this?!??! i have started the session and used
session_register('data','id')...... to store the vars.

Thank's in advance

Rodrigo


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

Reply via email to