I have a select statement like such.
$SQLQuery = "SELECT BannerID, BannerURL, BannerTarget, Displays, Clicks
FROM Banners
ORDER BY RAND()
LIMIT 1";
In this query the result that gets shown NEVER changes but it always stays the same. There are over 40 rows to select from so for surly there must be something wrong. If I move the limit up to 10, the first row still never changes but the other 9 rows are always random.
KashKurcura