✨️ The Vault ✨️

This is my public file dump, you can find here everything and nothing at the same time. I throw in here things that I either found on the internet, what some people have shared with me or some of my own inventions. Please use it accordingly, authors of the thingies are listed in README files.

'; foreach ($sortedItems as $item) { $fullPath = $dir . '/' . $item; $isDir = is_dir($fullPath); $icon = $isDir ? '📁 ' : '📄 '; $link = htmlspecialchars($item); $relativePath = $basePath ? $basePath . '/' . $item : $item; if ($isDir) { echo "
  • {$icon}{$link}"; listDirectoryContents($fullPath, $relativePath); echo "
  • "; } else { $href = htmlspecialchars($relativePath); echo "
  • {$icon}{$link}
  • "; } } echo ''; } $currentDir = dirname(__FILE__); listDirectoryContents($currentDir); ?>