site/wh/index.php

10 lines
162 B
PHP
Raw Permalink Normal View History

2023-09-02 23:10:21 +02:00
<?php
$files = glob("*.json");
foreach($files as $file) {
echo "<h1>$file</h1>";
echo "<hr>";
echo "<pre>";
readfile($file);
echo "</pre>";
}