9679f970cb
added path barrucadu's suggestion, not sure why I didn't see it for like 3 days.
22 lines
610 B
PHP
Executable File
22 lines
610 B
PHP
Executable File
<?php
|
|
//renaming to b.php
|
|
$dir = "banners/";
|
|
$files = scandir($dir);
|
|
$images = array_diff($files, array('.', '..'));
|
|
$name = $images[array_rand($images)];
|
|
|
|
// snags the extension
|
|
$img_extension = pathinfo($name, PATHINFO_EXTENSION);
|
|
|
|
// send the right headers
|
|
header('Cache-Control: no-cache, no-store, must-revalidate'); // HTTP 1.1
|
|
header('Pragma: no-cache'); // HTTP 1.0
|
|
header('Expires: 0'); // Proxies
|
|
header("Content-type: image/" . $img_extension);
|
|
header("Content-Disposition: inline; filename=" . $name);
|
|
|
|
// readfile displays the image, passthru seems to spits stream.
|
|
readfile($dir.$name);
|
|
exit;
|
|
?>
|