<?php
 
 
    //include class 
 
    include 'Obanner.php';
 
 
    //configuration
 
    //first var foe default image banner
 
    //2nd var for defaul link
 
    $banner    = new banner('defulat.gif','http://default.com');
 
    
 
    
 
    
 
    //ads .. alot of them you can add .. 
 
    print $banner->add_banner('bnr1.gif','http://bnr1.com','1-1-2008');
 
    
 
 
?>
 
 |