$file, "type" => $mtype); } closedir($d); // select a random entry from the array $f = $imgs[array_rand($imgs, 1)]; // send the proper headers to the browser header("Content-Type: " . $f["type"]); header("Content-Length: " . filesize($f["file"])); // tell PHP to send the file to the browser readfile($f["file"]);