
paulmagm
Members-
Posts
35 -
Joined
-
Last visited
Everything posted by paulmagm
-
Thanks for your help! But.. A. I have to include this "["group"]["groupName"]". $match has no value. B. I have to include $match["matchDateTime"] instead of your timestamp.
-
I have two other questions (and last questions). A. How can i echo a simple Array without the that $match and automatic repeat? Like <?php echo $match["group"]["groupName"]; ?> B. How can i format that date which this API echo me like. <?php echo $match["matchDateTime"]; ?> I get back this 2024-10-06T09:19:53.660Z I tried it often.. to bring it in Sa., 6.10. - 15:30. But it doesn't work. I have often two dates then in my echo and no good format. Thanks!
-
I have 5 Games in that table. With the code in my first post. It repeats automatic. the table lines. Team1 Team2 2:1 (all fine) Team1 Team2 1:1 Team1 Team2 0:0 Team1 Team2 0:0 Team1 Team2 0:0 But on the last 4 games i have the [0] haltime result not the [1] finished result like in the first game. And i don't know why. Thanks for your time! Edit: Hm now it works.. maybe it was just in the cache? haha..
-
Hey, I have a table with match results. <?php foreach ($matches as $match) { ?> $match["matchResults"][0]["pointsTeam1"] $match["matchResults"][1]["pointsTeam1"] n the first line i have the score [1] (game finished) on all other lines (td) i have the score [0] halftime score. How can i change it that in every line i have [1] with finished score? Maybe you can help me. Thanks! <?php foreach ($matches as $match) { ?> <tr><td></td> <td><img src="<?php echo $match["team1"]["teamIconUrl"]; ?>" height="25"></td> <td class="result"> <?php echo $match["matchResults"][1]["pointsTeam1"]; ?> : <?php echo $match["matchResults"][1]["pointsTeam2"]; ?> </td> <td><img src="<?php echo $match["team2"]["teamIconUrl"]; ?>" height="25"></td> </tr> <?php } ?> Thanks
-
Little function like If $variable == 0 then echo "--"
paulmagm replied to paulmagm's topic in PHP Coding Help
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 --. -
Little function like If $variable == 0 then echo "--"
paulmagm replied to paulmagm's topic in PHP Coding Help
0 if its not available. otherwise it will deliver the number. -
Little function like If $variable == 0 then echo "--"
paulmagm replied to paulmagm's topic in PHP Coding Help
max_supply is a number. what else? maybe you should go for a forum only for solutions. i will ask somewhere else for help. -
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.
-
Found a solution with the function on top.
-
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.
-
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.
-
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.
-
Page is empty from this point.. but no error. Also with error_reporting(E_ALL);
-
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.
-
yes, thanks!
-
<?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..
-
Or is this better to try it like this? https://stackoverflow.com/questions/48124551/how-to-display-24h-volume-coinmarketcap-api
-
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.
-
Now it works. Thank you very much!
-
I'm not able to add ucfirst in this line without crashing the hole website.
-
And here? breadcrumb_add('page', $page['content_slug']); i have to learn more php. too much ' for a frontend developer.
-
That works now. Thank you very much!
-
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); }
-
'title' => "{$page['content_slug']} ({$page['content_title']}) ", Can someone help me how to insert the ucfirst in this line? Thank you for your help.
-
can i calculate "X" in this javascript for value=""?