Created
June 6, 2012 08:45
-
-
Save keriati/2880711 to your computer and use it in GitHub Desktop.
For the silent game
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php ini_set('display_errors', 1);error_reporting(E_ALL); | |
$d=isset($_GET['d'])?urldecode($_GET['d']):dirname(__FILE__); | |
if(is_file($d)&&(header('Content-disposition: attachment; filename='.end(explode("/",$d)))||readfile($d)))exit(); | |
foreach(scandir($d)as$f)echo'<li><a href="?d='.urlencode(realpath($d)."/$f")."\">$f</a></li>"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
feat. @peet86 :)