Never been to TextSnippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world (or not, you can keep them private!)

« 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