CPA Widget Rotator Help?

super-oct

BANNED
Joined
Jul 26, 2009
Messages
323
Reaction score
53
Hey guys ived seen a site somewhere online dont know exactly where but this guy some how rotates on every refresh his CPA Lead & Adscend Media widgets and i was looking into this on google but no luck,

Any of you guys know what software im taking about?Please comment below and help a bro out :P Thanks in advance to any one of you guys that helps. :D
 
Ok......

Here is one way to do it.......it is called php includes.

You would have a set of links (widgets in this case) in a php file.

There are tools that will take each link or widget and rotate it.

I will see if I still have.....it does use up quite a few resources on your isp.

When I have more time, I will show you more.....
 
Ok......

Here is one way to do it.......it is called php includes.

You would have a set of links (widgets in this case) in a php file.

There are tools that will take each link or widget and rotate it.

I will see if I still have.....it does use up quite a few resources on your isp.

When I have more time, I will show you more.....

oK great thanks alot mate.
 
Quite simple...if you want to rotate between ************** and adscend...do something like :
PHP:
<?php
$rand = rand(1, 2);
if ($rand==1){
***lead code
}else{
Adsend code
}
?>
if you want to do more

Not tested and i've been up for 48 hour but should work.
PHP:
<?php
$rand = rand(1, 3);
if ($rand==1){
***lead code
}elseif($rand==2){
Adsend code
}elseif($rand==3){
widget3 code
 }
?>
 
Last edited:
Can i just insert this anywhere as an html code?
 
since we're on the subject, is there a to fake the referrer for gateways, can u just use the same method used for faking for single links?
 
Back
Top