$listquery = "select * from users WHERE hometown='$hometown' AND (type='dj' OR type='promoter')";
$listresult = mysql_query($listquery);
while ($row = mysql_fetch_assoc($listresult)) {
Gives me this:
Warning: Supplied argument is not a valid MySQL result resource in /users/ionichost.com/kcnites/showbyloc.php on line 28
Any ideas? WHILE is line 28. THANKS!