我正在使用json api解码功能进入一个带有php的网站。
虽然我收到了here的帮助,但工作正常。
我现在需要将同一个json的输出放入表中。
我真正需要做的是解码2个JSON API并让它们进入单独的表,一个在左边(在上面链接中引用的一个),另一个在右边的表中。理想地相互对齐。
当前使用的代码示例:
<?php
$json = file_get_contents("http://imawebsite.com/api?api_key=imanapikey", true); //getting the file content
$decode = json_decode($json, true); //getting the file content as array
echo "Username: " .$decode["username"];
echo "<br>";
echo "Confirmed: " .$decode["confirmed"];
echo "<br>";
echo "Est: " .$decode["est"];
echo "<br>";
echo "Total: " .$decode["total"];
echo "<br>";
echo "History: " .$decode["history"];
echo "<br>";
echo "Unpaid: " .$decode["round"];
?>