Code: Select all
<?php
// your links array
$links = array(
'https://robot.lk.com',
'http://coderlink.com',
'http://buytiptop.com',
);
// select random link and redirect
header('Location: ' . $links[rand(0,count($links)-1)]);
?>
Code: Select all
<?php
// your links array
$links = array(
'https://robot.lk.com',
'http://coderlink.com',
'http://buytiptop.com',
);
// select random link and redirect
header('Location: ' . $links[rand(0,count($links)-1)]);
?>