Doubt this well help anyone, but it's a redirection script I quickly made for newbies..PHP Code:<?php
$time = ("3");
if($_GET['url'] == "yourhomepage.whatever") {
echo("You will be redirected to the homepage in ". $time ." seconds.");
}
else {
print("You will be redirected too ". $_GET['url'] ." in ". $time ." seconds.");
}
?>
<meta http-equiv="refresh" content="<?php echo $time; ?>;url=<?php echo $_GET['url']; ?>"/>
Create a page.. something like redirect.php, then visit redirect.php?url=websiteyouwishtogoto
Change yourpage.whatever too the URL of your homepage or something..
This is probably more like a tutorial, but for some reason I couldn't post there, hope this code helps somebody..
Also, change the value of $time if you wish for it too be quicker or slower, it goes by seconds if you did not know.





Reply With Quote


)
