URL rotator script

Website

Supreme Member
Joined
Feb 8, 2008
Messages
1,260
Reaction score
287
Is there a way to redirect a domain to one of a few URLs and specifiy the frequency of redirection? An example would be to have mydomain.com redirect to URL A 4/5 times and URL B 1/5 times?
 
actually have a script that does exactly that :)

try this out:

PHP:
<?php
$a = array(
"http://www.urlA.com",
"http://www.urlA.com",
"http://www.urlA.com",
"http://www.urlA.com",
"http://www.urlB.com",
);
header('Location: ' . $a[rand(0,count($a)-1)]);
?>
 
Is there a way to redirect a domain to one of a few URLs and specifiy the frequency of redirection? An example would be to have mydomain.com redirect to URL A 4/5 times and URL B 1/5 times?
To clarify... you have 2 domains pointing to one host (one index.php), and you'd like to redirect the domains to a specific array of URLs?
 
I need a CodeFu.net account but don't want to pay for it right now.
 
Does anyone has homebizrotator dot com script? looks great...
 
Can you set me up an account please?
Thanks

Wow, this guy is a prick.. He wants to sell people accounts for software that costs $70 total for $100 PER MONTH! For a ROTATING script.. such bad rep.. what a dick
 
i use this script for rotating

http://prosper.tracking202.com/scripts/rotate-offers/
 
Yo @DaChamp - what kind of a champion are you ? Stupidity ?

First of all my first post in this thread was aimed for the OP, I would have helped him with pleasure but he didn't replied, since then I got a few requests and I helped people out, those people are welcomed to post here; I didn't charged anyone

Second, my good willing is limited, you sent me so many PM's and insisted about paying me for an account, which is against the rules by the way, I told you $100 to shut you up but you are a persistent kid

At last but not least, are you calling me a dick ? Yes I am and I can smell your pussy, IDIOT

Quote:
Originally Posted by thomansfel
hello, I already opened accs for a couple of other members, sorry but I can't help you

Quote:
Originally Posted by DaChamp
Hey can I get an account on your script account? How much do you want for one?
 
Not even going to respond to these juvenille compliments. You went around a developer to try to make money (and were extremely greedy about it) and got caught and called out for it.
 
"juvenille compliments" ? you called me a d**k first you moron

Oh, I am greedy ? Can't you afford $75 to pay the original developer of the script codefu.net ? You got caught buying via PM, you dumb ass, not me

What part of "I told you $100 to shut you up" don't you understand ? You sent me 5 PM's after I told you "hello, I already opened accs for a couple of other members, sorry but I can't help you"

I offered my help to the OP because I knew they aren't selling the script anymore, you got it now, good for you and use your damn host, fu*k off, IDIOT
 
Exactly what I mean by juvenille. Trying to make money off of another coders script that was "no longer available" even though it is. How about you stop being such an asshole and realize that you were way out of line.

Done with this convo.
 
Both of you are speaking off of hearsay in order to make legitimate claims and take sides one would have to see the trail of PM's that were exchanged between you two.
 
if its for a tracking, I'd second prosper
if its a quick script you are looking for, simply use the php rand function
 
Back
Top