Im trying to pull random elements out of a database for rotating ads in a sense. Im using this line of code in my sql query but it seems to ALWAYS pull the same elements out.
SELECT idNum, title
FROM listings
WHERE catagory = 'furniture'
ORDER BY RAND( )
LIMIT 3
Am i doing something wrong? Is there some other way to randomize this?
Thanks,
Jesse