Hi,
I'm trying to do in PHP something very easy in Javascript. Look at the code below :
echo "<SCRIPT>top.location=\"mapage.php\"</SCRIPT>";
This going to redirect the top of my window, ok
If I want to do the same thing in PHP, I'll try something like :
header("Location : /mapage.php");
but it redirects only the current frame... So I'm wondering how to redirect the top window with a HEADER. something that will look like :
header("Location : /mapage.php, Target=_top");
Any idea ?
Thanks for your help
I've just suscribed to the forum, seems good, I'm from france and we don't have that much good php forum (we used to have a very good one but it just closed 🙁 )