Hey guys, I have a tag cloud that I’m working on. It works fine but I want to refine it to only include locations that occur more than x amount of times and with the info12 length being greater than 0. Ordinarily I would do a count with a group by / having count… but since I need individual results for the tag cloud sizes I can’t accomplish it that way. Any suggestions?
Here is the working select:
mysql_query("SELECT
info12
FROM
usertable
WHERE
info13 = '$location' AND active = '1'");
info12 being the city, info 13 being the state.
Thanks in advance for your time!