Simple Ad Rotation

Simple Ad Rotation1. Create a new file (newfile.php) and copy and paste the below code into that file, then save it.

<?php

// load the file that contain the ads
$adfile  =  "ads.txt" ;
$ads  = array();

// one line per ad
$fh  =  fopen ( $adfile ,  "r" );
while(! feof ( $fh )) {

$line  =  fgets ( $fh ,  10240 );
$line  =  trim ( $line );
if( $line  !=  "" ) {
$ads [] =  $line ;
}
}

// randomly pick an ad
$num  =  count ( $ads );
$idx  =  rand ( 0 ,  $num - 1 );

echo  $ads [ $idx ];
?>

2. You are going to need to create a blank text file, (ads.txt). If you change the name of the file, make sure you change the bolded area of the code as well. Now to add your advertisements to the text file, just code an image with a hyper link and make sure that each ad is on its own line. Just look below for an example.

<a href="http://advertisement_url.com" target="_blank"><img src="advertisers_image.gif" border="0"></a>
<a href="http://advertisement2_url.com" target="_blank"><img src="advertisers2_image.gif" border="0"></a>
<a href="http://advertisement3_url.com" target="_blank"><img src="advertisers3_image.gif" border="0"></a>

3. This actually will randomly display an ad, their is no configuration to always display ad's in order. This is the same rotation script that i use. It works well and saves space. Now, back to the code. This script uses basic php codes to gather information, and a simple randomizer.


Related Articles

  • Simple Ad Rotation
    1. Create a new file (newfile.php) and copy and paste the below code into that file, then save it.
  • Banner Rotation Using PHP
    Creating a simple ad-rotator, the ads are stored in a text file and picked randomly by this PHP code. Most of the webmaster use banner ads, we will be creating a very simple banner rotator, which picks up randomly one ad from the banner file and displays it, this file can be called in any other page...
  • Banner Rotation Script
    Step1: Opening the Javascript tags and setting the variables/size of the images you are going to display:
    The width and heights are recognised as pixels, I have set the default size of most of the banners.
  • Using Paid Autosurf Programs to Effectively Advertise Your Website
    In this day and age, a competitive advertising strategy is a crucial part of your website business
  • More Money With Google
    Though some people say that earning money online is not possible. Lunch is not free! It is not true. You can earn online. There are loads of companies who offer their affiliation program. But the main problem with affiliation system is that you get paid only when you refer somebody to their service ...
  • Get Listed In Google In Under 24
    You may or may not have heard pepole claim they can get listed in Google in only 1 day. It seems that nearly 100% of the people you run across in forums act like in order to get indexed by Google in 24 hours is some miracle feat that can only be accomplished by doing some top secret marketing........
  • The Secret to Getting Listed in Google in 24hrs - Guaranteed
    The truth of the matter is getting listed in Google in under a day is actually quite easy!
  • Who Else Wants To Get Listed In Google In Under 24 Hours?
    You may or may not have heard people claim they can get listed in Google in only 24 hours. It seems that nearly 100% of the people you run across in forums act like in order to get indexed by Google in 24 hours is some miracle feat that can only be accomplished by doing some top secret marketing.....
  • Creating Dynamic Website Content with PHP - MySQL
    Did you know that constantly generating and posting fresh website content is a good way to get return visits from your customers? Heres how its done using PHP.
  • Torpedo And Sink The Ship SS Search Engine Rankings
    This confession of a SEO expert showcases his interaction with a problem client. Dynamic and educational at the same time. See if you can obtain some tips for your own SEO.

Contact Web Design Outsource and get started today

Need Website Designing, Development, Redesigning, Maintenance and SEO services or help growing your company's web presence? Request a free Quote Now.