Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- <title>File List</title>
- <link rel='shortcut icon' href='favicon.ico' type='image/x-icon'/ >
- <style>
- a{color: #008800;}
- a:hover{font-size: 22px;}
- a:active{font-size: 18px;}
- a:visited{color: #006400;}
- </style>
- </head>
- <body style="background-color: #000000; color: #00FF00; font-size: 20px; font-family: Sans-Serif;">
- <div style="margin-left: 50px;">
- <p><strong>File List</strong></p>
- <p style="margin-top: -15px; margin-bottom: 3px;"><small>sorted alphabetically</small></p>
- <?php
- $files = array_diff(scandir(getcwd()), array('..', '.','.htaccess','index.html','index.php','favicon.ico'));
- sort($files);
- foreach($files as $file) {
- if (is_dir($file)) {
- print "<a target=\"_blank\" href=\"{$file}\">$file</a> - directory<br />";
- } else {
- print "<a target=\"_blank\" href=\"{$file}\">$file</a><br />";
- }
- }
- ?>
- </div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement