Created
July 15, 2015 18:42
-
-
Save joeydsmith/5ae83235b76f2cd8be4a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Get value for total_raised from Classy apc_inc | |
// https://www.classy.org/api1/account-info?cid=16294&token=82nfmamctkvewbU4FoMa | |
$json = file_get_contents('https://www.classy.org/api1/account-info?cid=16294&token=82nfmamctkvewbU4FoMa'); | |
$data = json_decode($json); | |
// Just Testin' Yall | |
// echo '<pre>'; print_r($data); echo '</pre>'; | |
if ( $data->total_raised && $data->total_raised != '' ) { | |
?> | |
<section id="together-we-raised" role="complementary"> | |
<article> | |
<h1>Together We Have Raise</h1> | |
<h2> | |
<span>$</span> | |
<span class="count-up blur" data-countto="<?php echo intval($data->total_raised); ?>" data-duration="1000"><?php echo intval(intval($data->total_raised) * .75); ?></span> | |
</h2> | |
</article> | |
</section> | |
<?php } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment