Jump to content

[resolved] Random Redirect from Array - How?


holyearth

Recommended Posts

I'm in need of a php script to redirect from an array of URL's....

For example when index.php is hit, it will redirect to a random url from the array....

<?php
$url = array(
"1" => "http://www.google.com",
"2" => "http://www.yahoo.com",
"3" => "http://www.snap.com",
"4" => "http://www.altavista.com",
);
?>

<HTML><HEAD>
<META HTTP-EQUIV=Refresh CONTENT="0; URL=<? echo("$newurl"); ?>">
</HTML>



That's as far as I can go, I don't know how to tell it to pick randomly....:-(

Sorry, I'm learning.......
Link to comment
https://forums.phpfreaks.com/topic/25642-resolved-random-redirect-from-array-how/
Share on other sites

<?php
$url = array(
"0" => "http://www.excite.com",
"1" => "http://www.google.com",
"2" => "http://www.yahoo.com",
"3" => "http://www.snap.com",
"4" => "http://www.altavista.com",
);
?>

<?php
$urlIdx = rand(0,count($url)-1);
?>


<META HTTP-EQUIV=Refresh CONTENT="0; URL=<? echo("$url[$urlIdx]"); ?>">


<!--THE ABOVE CODE WORKS!!-->

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.