Skip to content

Instantly share code, notes, and snippets.

@simkoG
simkoG / simpleDirectoryLister.php
Last active June 12, 2024 07:09 — forked from nullrndtx/simpleDirectoryLister.php
A simple PHP Directory Lister
<?php
/*
*** OPTIONS ***/
// TITLE OF PAGE
$title = "List of Files";
// ADD SPECIFIC FILES YOU WANT TO IGNORE HERE
$ignore_file_list = array( ".htaccess", "Thumbs.db", ".DS_Store", "index.php" );