14 lines
No EOL
364 B
PHP
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);
|
|
?>
|
|
|