Jump to content

paulmagm

Members
  • Posts

    31
  • Joined

  • Last visited

Everything posted by paulmagm

  1. i have both when it's 0. 0--. And i try to hide the 0 when the result is zero. I want to replace it with --.
  2. 0 if its not available. otherwise it will deliver the number.
  3. max_supply is a number. what else? maybe you should go for a forum only for solutions. i will ask somewhere else for help.
  4. Hey i have a little function like <?php echo number_format($max_supply, 0, '.', '.'); if($max_supply ==0) { echo "--"; } ?> But i still have a 0 before "--" how can i hide this 0.
  5. Yes thank you. Do you have a tipp for the problem that i dont want $ 65.400,678956 but i need to display $ 0,000134. With one value like $price.
  6. Yes this is no problem but after the , how can i handle this that big prices set a 0 with number_format. But then my small prices like 0,00004 only looks like 0. i only have $price.
  7. What would be the best way to implement a numbers helper in my CMS? I have to show prices sometimes $ 45.555,64549 and $ 0,00067 and supply like 113.122.122,4567. Thank you.
  8. Page is empty from this point.. but no error. Also with error_reporting(E_ALL);
  9. function price_format($price, $decimals = 2) { $CI =& get_instance(); $config = $CI->config->item('mcp'); $price = (float) $price; $formats = ["US" => ['.', ','], "EU" => [',', '.']]; $decimals = ($price >= 1 || $price == 0) ? $decimals : ($price < 0.000001 ? 8 : 6); return number_format($price, $decimals, $formats[$config['num_format']][0], $formats[$config['num_format']][1]); $coinfeed_coingecko_json = file_get_contents('https://api.coingecko.com/api/v3/coins/markets?vs_currency=usd&ids='.$t['page.content_slug'].''); $coinfeed_json = json_decode($coinfeed_coingecko_json, false); $coinfeed_current_price = $coinfeed_json[0]->current_price; $coinfeed_current_supply = $coinfeed_json[0]->circulating_supply; $coinfeedprice_change_percentage_24h = $coinfeed_json[0]->price_change_percentage_24h; $coinfeed_ath = $coinfeed_json[0]->ath; ?> <?php echo $coinfeedde = number_format($coinfeed_current_price, 0, '.', '.'); ?> I created my first api call and now i trying to connect it to my old numbers helper (function price_format). How can i connect this function with my new api call? If i replace $price it will not work. Thanks for your time guys.
  10. <?php ini_set('max_execution_time', 300); // $tick = file_get_contents('https://api.coinmarketcap.com/v1/ticker/bitcoin/'); $url ='https://pro-api.coinmarketcap.com/v1/cryptocurrency/listings/latest?limit=2000';// path to your JSON file $data = file_get_contents($url); // put the contents of the file into a variable $characters = json_decode($data); // decode the JSON feed $api_key = 'API KEY'; // echo $characters[0]->name; foreach ($characters as $character) { echo '<tr>'; echo '<td>' . $character->{'24h_volume_usd'} . '</td>'; echo '</tr></tbody>sdsdf</table>'; } ?> But my Page is empty..
  11. Or is this better to try it like this? https://stackoverflow.com/questions/48124551/how-to-display-24h-volume-coinmarketcap-api
  12. Hey, i started to take a look on APIs. Im really at the beginning and i tried to copy this snippet on my website. https://codesandbox.io/s/43n6y0r4j7?file=/public/index.html Can someone assist me what JS snippet i have to put on my page to have the same output? I already included the index.js Thank you.
  13. Now it works. Thank you very much!
  14. I'm not able to add ucfirst in this line without crashing the hole website.
  15. And here? breadcrumb_add('page', $page['content_slug']); i have to learn more php. too much ' for a frontend developer.
  16. That works now. Thank you very much!
  17. Thanks make sense. But crashed my site. But why? This is the hole context then. $data = [ $content_slug = ucfirst($page['content_slug']); $content_title = ucfirst($page['content_title']); 'title' => "{$content_slug} ({$content_title}) ", 'meta.description' => $description, 'page' => $page, ]; return $app->render($template, $data); }
  18. 'title' => "{$page['content_slug']} ({$page['content_title']}) ", Can someone help me how to insert the ucfirst in this line? Thank you for your help.
  19. can i calculate "X" in this javascript for value=""?
  20. Anybody in which exactly calculation for max and which for value? Thanks!
  21. Found a way to import the result of the JS. But i still need help what exactly i have to calculate for value="" max="max price" low="0". example <progress value="document.getElementById('demo')" max="1000"> <script> document.getElementById("demo").innerHTML = document.querySelector('progress').value = (100 + 50) * 3; </script>
  22. If i do the calculation <script>document.getElementById("demo").innerHTML = (539.0000000000 - 536.8600000000) * 100;</script> how i put this demo result in value=""
  23. yes but how i put it in progress with max and value? Or what i have to calculate for both and input.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.