Skip to content

Instantly share code, notes, and snippets.

@coudenysj
Created October 24, 2024 10:54
Show Gist options
  • Save coudenysj/b13947580046e5c202bc085acfdc8273 to your computer and use it in GitHub Desktop.
Save coudenysj/b13947580046e5c202bc085acfdc8273 to your computer and use it in GitHub Desktop.
PHP Directory Listing
<?php
echo '<ul>';
if ($handle = opendir('.')) {
while (false !== ($file = readdir($handle))) {
if (in_array($file, array('.', '..'))) {
continue;
}
echo '<li><a href="'.$file.'">'.$file.'</a></li>';
}
closedir($handle);
}
echo '</ul>';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment