0
I have a question. When I run a Select Count in the database it displays everything straight. But how to display it the same way using PHP?
select country, count(*) as quantidade from customer group by country
$sql=mysql_query("select country, count(*) as quantidade from customer group by country");
And then I don’t know.
I’m trying to build the loop but without success.
– Davi R Rossini