|
<?php
$files = array();
// Define
$files[] = 'hardcore-01.html';
$files[] = 'hardcore-02.html';
$files2 = array();
// Define
$files2[] = 'hardcoregallery-01.html';
$files2[] = 'hardcoregallery-02.html';
$num = rand(0,sizeof($files)-1);
?>
stuff here
<?php readfile($files[$num]); ?>
stuff here
<?php readfile($files2[$num]); ?>
stuff here
|