using php with mysql. I have table_one and column_something that is enum type with the values "A", "B" and "C". I would like to count these values and then echo how many there are of each of these individual values from column_something. I'm confused about this. This is how I am going about it but can't finish or am I totally wrong? Thanks in advance for any help.
OwenTheSamoan
$array = array(
"A" => 1,
"B" => 1,
"C" => 1);
$query = ("select column_something from table_one where something ='$something'");