Hello,
I did build this querry:
And it works, I can display 1 random link from category # 76. How would I do it if I wanted to display 1 random link but this random link would be chosen from several categories, lets say that this 1 link would randomly chosen from category # 1 OR category # 2 OR category # 3
$sql = "SELECT * FROM idx_link WHERE suspended=0 and category_id=76 ORDER BY RAND() limit 1";
$result = mysql_query($sql);


