I have this line
$market_totals = mysql_query("SELECT market, COUNT(market) AS market_totals FROM installation GROUP BY market");
tested in phpmyadmin and works fine displays what I want.
But for some reason I can't get it to show up on my page at all
mysql_fetch_array($market_totals);
echo $market_totals;
Either I'm too tired or it's something that I'm missing. Where is it?
TIA