I wanted to randomly select the results from the mysql database using this code:
$data = mysql_query("SELECT * FROM people ORDER BY RANDOM() LIMIT 4") or die(mysql_error());
I got an error message: Members FUNCTION.RANDOM does not exist
Is there something that I am not adding or doing right here?
Thank you for your attention.
source share