21 | 1,
27 | // CURLOPT_HEADER => 1,
28 | CURLOPT_URL => 'https://testdrive.donordrive.com/api/participants?version=1.5&limit=10&orderBy=sumDonations%20DESC&offset=1&limit=9',
29 | CURLOPT_CONNECTTIMEOUT => $timeout
30 | ));
31 |
32 | $response = curl_exec($curl);
33 | $jsonResponse = json_decode($response, true);
34 | curl_close($curl);
35 |
36 | if($jsonResponse) {
37 | foreach($jsonResponse as $participant) {
38 | echo '
39 |
40 |
41 |
' . $participant['displayName'] . '
42 |
' . $participant['createdDateUTC'] . '
43 |
' . $participant['eventName'] . '
44 |
45 |
46 |
';
47 | }
48 | } else {
49 | echo '
No participants for this event found
';
50 | }
51 |
52 | ?>
53 |