You want to randomly rotate a portion of a page? Refresh this page a few times and watch the featured product change on a random basis. If that is what you want to do I will PM you the source code.
<?php /* list the files inline here */ $files = array( 'file1.php.inc', 'file2.php.inc', 'file3.php.inc' // etc. ); /* or load them from a flatfile containing a filename on each line: file1.php.inc file2.php.inc file3.php.inc */ $files = file('/path/to/file'); // and now include a random file include $files[array_rand($files)]; ?> PHP: