getting results from a array

wxdqz

New Member
Does any know how I could get this mysql result out from an array to print onto a web page? Here is what i have go so far.

$a = mysql_query("Select Count(*) as Totals, f1 from email_log Group By f1 Order by Totals Desc");

$results = mysql_fetch_array($a);
 
Back
Top