I am using the Header() function to redirect a user after they have logged in sucessfully. I am using it in an iframe and i want the redirected page to open in the parent window. Below is what i am currently using:
header('Location: member_home.php');
exit;
Does anyone know if the header function has a 'Target' attribute or some way of opening the member_home.php page in the parent window?
Thanks.