I've page that pass POST data to itself.
After its processing in script, I delete it by
unset($var, $HTTP_POST_VARS['var']);
echo $var.'<br>'.$HTTP_POST_VARS['var']; // check only for
testing purposes and see nothing, that's I need
But when I reload page in browser, its still there.
So how can I delete it completely?
Thanks.