For someone that knows PHP this will probably be the easiest $20 of your life. I have a site where I link to other sites. I have a link.php page, where on my site I link to the link.php, and from that it pulls other URLs that I want to send my site to. So on my page I link to "link.php?id=google", and it links to whatever I set "go" to in my link.php file. I need something programmed that will take my link.php?id=google, and instead of redirecting it to one place, I need it redirected to multiple URLs. I need to be able to change the percentage of links. So say I have 5 links. I want to be able to have link.php?id=google redirect to Google.com 50/100, Yahoo.com 25/100, MSN.com 15/100, and Ask.com 10/100 times. My guess is that it's a simple "if" command in the link.php file. Just PM me if you want the job and I'll send you what the link.php looks like. Once it's done I'll pay you 25 bucks. Here's what the link.php file looks like : <?php $path = array( 'google' => 'http://www.google.com', 'misc' => 'http://forums.digitalpoint.com' ); $id = htmlspecialchars($_GET['id']); $ovkey = htmlspecialchars($_GET['ovkey']); $filename = './logs/' . $id . '.log'; $content = 'JUMP, ' . $_SERVER["REMOTE_ADDR"] . ', ' . date("h:iA") . ', ' . date("Y-m-d") . ', ' . $ovkey; $handle = fopen($filename, 'a'); fwrite($handle, "$content\r\n"); fclose($handle); if (array_key_exists($_GET['id'],$path)) header('Location:'.$path[$_GET['id']].'?sub=y_'.$key.'-'.$ovkey); ?> Code (markup):