Kodlar:
<?php setlocale(LC_ALL, 'tr_TR.UTF-8'); $url = "http://api.gametracker.rs/demo/json/server_info/95.173.173.9:27015"; $client = curl_init($url);curl_setopt($client,CURLOPT_RETURNTRANSFER,true); $response = curl_exec($client); $sonuc = json_decode($response); $oyuncu= $sonuc->players_list[0]->player->name; $skor= $sonuc->players_list[0]->player->score; $sure= $sonuc->players_list[0]->player->time; ?> <html> <head> <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous"> </head> <body> <br> <br> <table id="tablePreview" class="table"> <thead> <tr> <th>Oyuncular</th> <th>Skor</th> <th>Süre</th> </tr> </thead> <tbody> <tr> <td><?php echo $oyuncu;?></td> <td><?php echo $skor;?></td> <td><?php echo $sure;?></td> </tr> </tbody> </table> </body> </html>