I have been working with a friend on his site and I have run into a road block. He has a site with 3 columns. We have been trying to find a way to display a page at random in the third column using server side includes. We have 3 different pages that we want to randomize on page load. If anyone knows of a way or has seen anything on the net we would appreciate the help.
If you're using php, I can probably help.
All you need is a random number generator (say 1-3) and assign it to a variable. ($randomnumber)
Then add this random number to an include string.
e.g. $var_include_path='http://yoursite/includes/file".$randomnumber.".php'
Then save 3 independant include files with the content you want to display in the main page and number them accordingly.
In the main page in your 3rd <td>, you can then use the random number to select one of the 3 pages via the include statement within that cell.
You could use as many different pages as you wanted with this.
Let me know if you need further clarification.