For a login page using frames, I need to redirect my user. I can't find the way to do it with php.
I have a frame set: loginframe and bodyframe.
The user submits his login information. The loginframe is reloaded correctly, with an error message if he makes a mistake.
I want to reload frame named bodyframe when the login is good.
I tried all combinations of header("Location: body.php target=bodyframe");, but I think the header function can't do that.
My crappy solution for now is to treat the login on the index.php (Frameset page). That way, all frames will be reloaded.
Is there a neat solution to my problem?