I have a website that uses a lot of includes...
I would like to make these random, so that the page is always different when it is loaded...
For instance, taking just two includes, I have
<? include ("/path/to/file/latestposts.php"); ?>
and
<? include ("/path/to/file/stats.php"); ?>
I would like these two includes to be random so that only one is displayed...
Any ideasπ