PDA

View Full Version : Random Article


Zoram
08-27-2002, 04:24 AM
How do I script php to pick a random row from a table?

Spookster
08-27-2002, 05:02 AM
Well you really don't need PHP to do that. SQL will do it just fine:


SELECT * FROM tablename ORDER BY rand() LIMIT 1;