Cleaned up some files

This commit is contained in:
SovereigntyIsNotFreedom 2025-04-13 16:12:39 +01:00
parent 4837034ec3
commit 4e79b26ebf
3 changed files with 8 additions and 23 deletions

View file

@ -1,18 +1,3 @@
<?php
// Open a known directory, and proceed to read its contents
if (is_dir($dir)) {
if ($dh = opendir($dir)) {
while (($file = readdir($dh)) !== false) {
echo "filename: $file : filetype: " . filetype($dir . $file) . "\n";
}
closedir($dh);
}
}
?>
<!DOCTYPE html>
<html>
<head>