Prueba esto:
<?php
require('connection.php');
$sql="SELECT sum(amount) as total FROM td";
$result = mysqli_query($sql);
while ($row = mysqli_fetch_assoc($result))
{
echo $row['total'];
}
mysqli_close($con);
?>
Como se dijo en un comentario anterior, ¡no necesita el ! delante del método de consulta.