$c1_total = mysql_query("select * from results votes WHERE choices = 'Bob'");
$c2_total = mysql_query("select * from results votes WHERE choices = 'Sally'");
$c3_total = mysql_query("select * from results votes WHERE choices = 'Sue'");
When I print each of those variables they return:
Resource id #3
Resource id #4
Resource id #5
Rather than the actual number stored in that column. Why is that?