Prosper202 Tracking202 Export202 WorldProxy202 Meetup202 | Blog Forum Newsletter Twitter | Advertise
Login · Register
Home About Docs Scripts Blog Forums Hosting Donate Download

Offer Rotating Script

Post new topic Reply to topic Prosper202 Forum Index » Affiliate Tools
New Posts Search Forum
Author Message
neo99
Website Skype GTalk AIM


Joined: Feb 27th, 2008
Posts: 38

Post Posted: Jun 3rd, 2008 at 1:52am Post subject: Offer Rotating Script Reply with quote

Raakesh from Affiliate Radar has a pretty cool script available for $19.99. It rotates up to 10 offers so you can determine a winner.

Read about it here:

http://www.raakesh.com/blog/archives/34

Back to top
Srewob


Joined: Jan 2nd, 2008
Posts: 58

Post Posted: Jun 7th, 2008 at 12:25pm Post subject: Re: Offer Rotating Script Reply with quote

Neo99, have you actually used this script? It looks like a pretty good idea, actually.

Back to top
Longover
Website AIM


Joined: Apr 3rd, 2008
Posts: 21

Post Posted: Jun 8th, 2008 at 1:55am Post subject: Re: Offer Rotating Script Reply with quote

Couldn't you just do some really simple php or java script to rotate your offer pages?

I'm not an expert programmer, but this should do the trick...

<?php

$offer[1] = "http://yourwebsite.com/ringtones1.php/";

$offer[2] = "http://yourwebsite.com/ringtones2.php/";

$offer[3] = "http://yourwebsite.com/ringtones3.php/";

$offerCount = count($offer);

$randomOfferNumber = mt_rand(1, $offerCount);

include $offer[$randomOfferNumber];

?>

Back to top
Longover
Website AIM


Joined: Apr 3rd, 2008
Posts: 21

Post Posted: Jun 8th, 2008 at 3:38am Post subject: Re: Offer Rotating Script Reply with quote

Hmm... When I made the last post, that guys site was down so I wasn't able to look at his example. Here is an example with an iframe:

<html>

<?php

$offer[1] = "http://www.mb01.com/lnk.asp?o=836&c=918273&a=24569";

$offer[2] = "http://www.mb01.com/lnk.asp?o=1554&c=918273&a=24569";

$offer[3] = "http://www.mb01.com/lnk.asp?o=1520&c=918273&a=24569";

$offerCount = count($offer);

$randomOfferNumber = mt_rand(1, $offerCount);

?>

<head>

<title>Untitled</title>

</head>

<body>

<iframe

src = "<?php echo $offer[$randomOfferNumber]; ?>"

width=100% height=1000 scrolling="auto" frameborder="0">

</iframe>

</body>

</html>

Back to top
Post new topic Reply to topic Page 1 of 1