If I have a table setup like:
id text
And want to display the text randomly somewhere on my page how could I do this?
i assume u mean u want a random text to be pulled from the table ?
select * from tablename order by RAND() LIMIT 1
reg kevin