| 
<?php
 /*
 author: usman didi khamdani
 author's email: [email protected]
 author's phone: +6287883919293
 */
 
 include('image_banner.class.php');
 $banner = new ImageBanner;
 
 $error = '<h3 style="color:#ff0000">Access Denied</h3>';
 $not_found = '<h3 style="color:#ff0000">Data is not found or has been removed</h3>';
 
 echo $banner->BannerPage($error,$not_found);
 
 ?>
 |