I am trying to set a page for logout from a service I use but need to kill the $_REQUESTprovided by that service so my logout and redirect works.
I have tried the following with no luck
unset ($_REQUEST['login]');
header ("Location: http://www.mysite.com/mypage.php");
There has to be some way to either delete the variable or to be rid of the entire request array.
Please help.