Forum Moderators: coopster
I did forget the parentheses, it is just a recursive print, you dont need to do it that way, it was more for examples sake.
$sql= "SELECT SUM(downloads) AS totaldownloaded FROM screen_saver";
$result= mysql_query($sql);
$row = mysql_fetch_array($result)
echo $row['totaldownloaded'];
should work a little better.