rotate iframe sites?

tonlilaz

Elite Member
Joined
Feb 28, 2008
Messages
1,519
Reaction score
1,730
i'm not sure if this is possible....but

i've got my money page on an iframe page....ex:

on mywebdomain.com =

Code:
<IFRAME SRC="afflink.html" WIDTH=800 HEIGHT=800>
</iframe>

is it possible to somehow rotate afflink.html with other urls?

i want to be able to rotate my sites...but use 1 domain...is it possible? am i crazy? is there a better way?

tanx! :D
 
I am no pro by far at this, but what I do is use pageswirl rotator.

It is free for up to 5 different links and works great for if you are using Brads redirector or whatever.

Hope that helps and if I am totally off subject I apologize.

I also want to be part of your gurl power. I really think I could contribute.
 
You can use a offer rotation script and just use yourdomain.com/iframepage as the outgoing links.
 
try this...


<html>
<head>
<title>Put Your Website Title Here</title>
<meta name="keywords" content="Put Your Keywords Here">
<style>
* {margin:0; padding:0;}
</style>

</head>
<body>

<?
$urls = array(
"http://affiliatelinkaddress1.com",
"http://affiliatelinkaddress2.com",
"http://affiliatelinkaddress3.com",
"http://affiliatelinkaddress4.com");
$url = $urls[array_rand($urls)];

echo '<iframe style="margin:0; padding:0; border:0;" src='.$url.' width=100% height=100% frameborder=no></iframe>';

?>
</body>
</html>
 
Back
Top