I have the following Query that I have to display in a HTML table:
$query= "SELECT SUM(amount_pln) AS suma,country FROM fin_revenues GROUP BY country ORDER BY suma DESC";
$result = mysqli_query($mysqli,$query);
When running the query in PHPMYADMIN, it works perfectly as I need but I can't figure out how to get the same result on a html table.
That's how is displayed in phpmyadmin:
Any help will be much appreciated.
