PHP Script – Random redirects to sites

$sites = array(
‘http://www.google.com/’,
‘http://www.msn.com/’,
‘http://www.yahoo.com/’
)
header(’Location: ‘.$sites[array_rand($sites)]);
die();

You can add your own websites. If you need help with any php code contact us

You can follow any responses to this entry through the RSS 2.0 feed. Both comments and pings are currently closed.

Comments are closed.