reklam.php iceriği:
örnek url: reklam.php?id=1
<?
$ids=intval($_GET['id']);
switch($ids){
case 1:header("Location: http://www.google.com/");break;
case 2:header("Location: http://r10.net/");break;
default:echo "Düzgün bir id girmelisiniz";break;
}//case sonu
?>