preview site for fix and fresh

This commit is contained in:
2026-07-22 05:07:13 -05:00
parent b19fdee30d
commit f70adf2a5e
1228 changed files with 38196 additions and 149050 deletions
@@ -0,0 +1,12 @@
<?php
if ($dir = opendir($_POST['path'])) {
while (false !== ($file = readdir($dir))) {
$len=strlen($file);
if($len > 0){
if (preg_match("/.(jpg|png)$/i", $file)) {
echo "$file;";
}
}
}
}
?>