Skip to content

Instantly share code, notes, and snippets.

@DreadKnight
Created June 20, 2012 00:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DreadKnight/2957303 to your computer and use it in GitHub Desktop.
Save DreadKnight/2957303 to your computer and use it in GitHub Desktop.
$result = mysql_query('SELECT SUM(amount) AS total FROM ab_donors WHERE type="$"');
$query_data = mysql_fetch_array($result);
$total_dollars = (float) $query_data['total'];
echo $total_dollars;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment