vbytes_billoard/index.php
2026-03-18 20:20:27 +01:00

14 lines
No EOL
364 B
PHP

<?php
$dir = 'pages/*.php';
$files = glob($dir);
if(empty($files)) {
die("Error: No HTML files found in /pages directory");
}
$randomPage = $files[array_rand($files)];
echo file_get_contents($randomPage);
?>