you see me... i don't like the problems i encounter when i try using the
PHP Code:
header("Location: page.html"); 
so my own way of always doing the redirection is
Code:
<script>
window.location = 'somepage.php';
</script>
and since i always use this JS function, i make it in to a php function so i can use it anytime(even when it subject to changes)
this is how i do it.
PHP Code:
function jsredir($url){
<
script>
window.location '$url';
</
script>

so anytime i want to use it i do this
PHP Code:
jsredir("mypage.html"); 
and viola...
i like it when i do things like this(so simple)...