Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 414 Bytes

README.md

File metadata and controls

19 lines (12 loc) · 414 Bytes

crowdrise_charity_api

simple class for the crowdrise charity api

examples:

include('class.gl_crowdrise_charity_api.php');

$charity = new gl_crowdrise_charity_api();

$charity->api_key   = '';
$charity->api_token = '';

$time_from = strtotime("2010-01-01 00:00:00");

$total_donation_amount = $charity->get_total_donation_amount($time_from);

echo number_format(round($total_donation_amount), 0);