About this user

« Newer Snippets
Older Snippets »
1 total  XML / RSS feed 

php include random file

/* Directory Structure
/index1.html
/index2.html
/index3.html
/index4.html
/index5.html
*/
srand((double)microtime()*1000000);
$num = rand(1,5);

include ('index'.$num.'.html');

?>
« Newer Snippets
Older Snippets »
1 total  XML / RSS feed