|
Try this:
<?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);
readfile($files[$num]);
readfile($files2[$num]);
?>
|