Need help on my script

rap8557

Banned - Selling via PM
Joined
Sep 15, 2008
Messages
2,000
Reaction score
631
i used DMR but it doesnt work on IE. how can i fixed this?
here's the code
page1
Code:
<html>
<head>
<style type="text/css">

#conash3D0 {height:0px; top:-1px;}

</style>

</head>
<?php 
echo "<meta http-equiv=\"refresh\" content=\"0;url=rdm2.php\">"; 
?>

</html>

page2
Code:
<html>
<head>
<style type="text/css">

#conash3D0 {height:0px; top:-1px;}

</style>

</head>
   <?php
$referer = $_SERVER['HTTP_REFERER'];
if($referer == "")
    {
echo "<meta http-equiv=\"refresh\" content=\"0;url=http://reflink.com\">";    
    }
else
    {
echo "<meta http-equiv=\"refresh\" content=\"0;url=http://fakesite.com\">";    
    }
?>
</html>

thanks!
 
Try using this
PHP:
 '<meta http-equiv="refresh" content="0;url=http://www.yourwebsite.com">';
 
Back
Top