I have this code header("location:login_success.php"); The frame target code that I used in html doesn't seem to work, is there a counter part in php that you can define where the header("location:login_success.php"); will go? This is in relation to designing the logout. I'm having problems because I have 3 frames. Is there any solution besides removing the frames.
if($count==1){
// Register $myusername, $mypassword and redirect to file "login_success.php"
session_register("myusername");
session_register("mypassword");
header("location:login_success.php");
}