Forum Moderators: Robert Charlton & goodroi
These 8 headlines I pull from database by using "ORDER BY RAND()" so each time a visitor clicks on page, some other articles appear in a random manner.
Would does Google think on this?
By doing so am I doing a good or bad thing for my site?
It is a "dynamic" site after all : D
Bottom line is, my every page will thus be cca 10% different each time you visit it.
Thanks for your opinions in advance.
If you have concern about this, you could serve the rotating headlines to your visitors in an iframe - then they will not be indexed as part of the page itself because they are actualy on a different url.
Assuming that the field ID is a numeric primary key on the table, try something like:
SELECT * , ID % DAYOFMONTH(CURDATE()) as modToday FROM tablename ORDER BY modToday
This gives you a fresh layout each day (assuming you have a decent number of entries) but it will be the same from minute to minute