background.php 180 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 <?php $dir = "img/"; $images = scandir($dir); $img = ''; while (substr($img, 0, 10) != 'background') { $img = $images[array_rand($images)]; } header("Location: " . $dir . $img);