View file banner.php

File size: 222B
<?php

header('Content-type: image/gif');
$locations= Array('download2.gif','download.gif','download3.png','download4.gif','download5.gif');
$title = file_get_contents($locations[array_rand($locations)]); 
echo $title;

?>