<?php
$json_url = "https://site/api.php?t=u&q=$NICKNAME";
$json = file_get_contents($json_url);
$array = json_decode($json, true);
?>
<table border="1">
<?php foreach($array["data"] as $key=>$value): ?>
<tr>
<td><?php echo $key; ?></td>
<td><?php echo $value; ?></td>
</tr>
<?php endforeach; ?>
</table>
?>
$nickname = filter_input(INPUT_GET, 'nickname');
$json_url = "https://site/api.php?t=u&q=$nickname";