Hey
Im trying to make a refresh hack of some sort, that works both in IE and Moz.
this is what i have/had, im now wondering what others do to refresh there pages after user input.
header( 'refresh: 0; url=welcome.php');
header("location:welcome.php");
this worked on a windows server, now they are crap(output first problem proberly)
function refresh($url, $delay){
echo "<meta http-equiv=\"refresh\" content=\"$delay;$url\">";
exit(0);
}
refresh("welcome.php?menu=Kalender", 0);
This works great in Moz, but in IE it repeats refreshing
edit.: ofcause the refresh function is not called like that, it's "hidden" inside a if(submitted...){...}