Date: 05/30/05 (PHP Community) Keywords: no keywords Hi Everyone, I am having problems unsetting a variable stored in SESSION.
// clear the list if we submitted a search
if(isset($_POST['show_list']) && ($_POST['show_list'] == 'show_list'))
{
unset($_SESSION['crh_current_page']);
unset($_GET['incdec']);
}
** EDIT thanks for help. The problem was me as usual resetting the variable somewhere that I was not looking. Source: http://www.livejournal.com/community/php/302243.html
|