php redirect not working in FF

theviralguy

Senior Member
Joined
Dec 16, 2008
Messages
1,040
Reaction score
333
can someone who knows php help me out? MY redirect code is working fine in IE and chrome but not in firefox?

Code:
<?php

    {

        echo "<meta http-equiv=\"refresh\" content=\"0;url=WEBSITEURL\">";    

    }

?>

that is the code :)
 
Last edited:
That should work but if you are still having problems try this
Code:
<?php
   echo '<meta http-equiv="refresh" content="0;url=WEBSITEURL;refresh=1">';
?>
 
Last edited:
Back
Top