All of you PHP'er's out there. Please advise me where I can put on my site a tool that rotates the content by paragraph header. Or is there an easier way to rotate a site with over 5,000 articles? What I'm trying to do is rmove different articles to front of page whenever the site is visited.
well, if you have articles named 1.html, 2.html and so on you could use random number generation, and include a random article every time the site is visited. If they have some more meaningful names, you could make a table like: id|name 1|pigs.html 2|mice.html etc. and apply the same random number generation and your page would look something like this: include("head.inc"); // things that precede the article include("$a.html"); // the article itself, where $a is the random number include("footer.inc"); // things below the article