[Wordpress] 12 hours Ad Rotator

acotut

Elite Member
Joined
Dec 1, 2010
Messages
2,381
Reaction score
1,083
Few days ago I discovered a blackhat method to make some decent cash with small investment.
What's this about?
This is the basic method
I bought 5k world wide traffic from ******
Made a simple blog,installed heatmap theme,and added an article
Added a sidebar ad and a top ad like this one below from a advertising network
Google-ad-under-the-title-and-above-the-content.jpg

After 6-8 hours,when all the visits(5k) have been delivered from ****** I had around 40$ on my "adveritising network" account.Isn't that awesome?
Now here comes the problem
This network dosen't like ****** traffic.The good thing is you can make more then 1 account with them.
Another good thing is that only 1 out of 3 accounts gets banned for ****** traffic.
Now,atm I don't have enough cash to buy a motherload of TLD (they require a TLD domain) to work with all accounts at a time,so i'm gonna use only 1 domain.
So what the heck i'm actually looking for?
I want to use the same website,to display ads from multiple accounts.So i'm basically looking for a script or plugin that will rotate my ad codes (from my multiple accounts) 12 hours a day for each one.So 12 hours i'll have the ad from account 1,12 hours later the script will change to the ad from account 2 and so on.
This is because I don't want to get more then 100$ for each account,so the 12 hours change would work the best for me.

Hope you guys understand what i have in mind.
Thanks
 
PHP:
<?php
$time=date("G");
if $time<12
{
?>
ADD CODE 1
<?php
}
else
{
?>
ADD CODE 2
<?php
}
?>

Something like this?
Not tested but it should work...
 
PHP:
<?php
$time=date("G");
if $time<12
{
?>
ADD CODE 1
<?php
}
else
{
?>
ADD CODE 2
<?php
}
?>

Something like this?
Not tested but it should work...

I'm not sure if I understand your code...
Not sure I understand your code :D
 
Ok,i don't know anything related to PHP but let's see if I get it straight

Here is the code
Code:
<?php
$time=date("G");
if $time<12
{
?>
ADD CODE 1
<?php
}
else
{
?>
ADD CODE 2
<?php
}
?>

(oh,now I saw the ADD CODE 1 and ADD CODE 2 :D,sorry)
I understand that
Code:
if $time<12
means 12 hours but,if I want to use rotate the ads in minutes,let's say 30 minutes,the code should be if
Code:
$time<0.30
right?

Also,can someone write this code for around 4 accounts?I don't really know how to do it lol
 
Back
Top