How to spread around 10 Networks?

eyashwant

Power Member
Joined
Feb 11, 2009
Messages
586
Reaction score
61
I heard it 1000s of times in this forum that spread it around 10 networks. I know in a page we can use one network. But how to spread it around 10 networks. Do you want to create 10 pages and rotate it by editing often ot do you want to blah?

Please explain me.
 
i use TDS(Traffic Directing System) for this purposes.. i will not name exact script name, cause the one im using is in russian.. but im sure there's a good one in english too
 
so some one please get me the excat url where i can get it and it's uses and how to do it steps please
 
OR . simple solution:
random_link.php
Code:
<?
$file = "urls.txt";
$fp = file($file);
srand((double)microtime()*10);
$urls = $fp[array_rand($fp)];
header("Location: $urls");
?>
+ create urls.txt and place url to offers 1 per line
OR to yourBlogWithCPAredirector.c0m/post-name/?mn=...
 
so this automatically gets one file each time, am i right... and so i need to create 10 files for 10 networks and get it in the urls.txt
and i need to get users to this page random_link.php and then they will be redirected to any one

Am i right???
 
you send your visitors to random_link.php and the script will randomly redirect to one of urls from urls.txt . No need to create 10 files. just place 10 links to offers from different networks into urls.txt
 
oh thanks...so i will try it..any other methods...
 
Back
Top