I'm trying to add the amounts of a column, I have this query, but when I show it on the Web it does not show me the result.
<td>
<?php
$query = mysqli_query ("SELECT SUM(importe_total) FROM consumobar");
$result = mysqli_fetch_assoc ($query);
echo "<p>$result</p>";
?>
</td>