<?php
$keyword = $_GET['keyword'];
//links
$destlink1 = 'http://my-P202-domain.com/tracking202/redirect/dl.php?t202id=11143&t202kw=' . $keyword;
$destlink2 = 'http://my-P202-domain.com/tracking202/redirect/dl.php?t202id=61159&t202kw=' . $keyword;
$destlink3 = 'http://my-P202-domain.com/tracking202/redirect/dl.php?t202id=14143&t202kw=' . $keyword;
$destlink4 = 'http://my-P202-domain.com/tracking202/redirect/dl.php?t202id=11943&t202kw=' . $keyword;
$randNum = rand(1 , 4);
if ($randNum == 1){
header("Location: $destlink1");
} elseif ($randNum == 2){
header("Location: $destlink2");
} elseif ($randNum == 3){
header("Location: $destlink3");
} else {
header("Location: $destlink4");
}
exit();
?>