Şu kodları kullanabilirsin. Tab kısımlarını yapmak & düzenlemek sana kalmış. Çekip listeler.
<?php
$data = file_get_contents("http://us.battle.net/api/wow/realm/status");
$json = json_decode($data, true);
?>
<table>
	<tr>
		<th>Name</th>
		<th>Type</th>
		<th>Battle Group</th>
		<th>Status</th>
		<th>Lang</th>
	</tr>
<?php foreach($json["realms"] as $veri){ ?>
	<tr>
		<td><?=$veri["name"]?></td>
		<td><?=$veri["type"]?></td>
		<td><?=$veri["battlegroup"]?></td>
		<td><?=$veri["status"]?></td>
		<td><?=$veri["locale"]?></td>
	</tr>
<?php } ?>
</table>
<?php
$data = file_get_contents("http://eu.battle.net/api/wow/realm/status");
$json = json_decode($data, true);
?>
<table>
	<tr>
		<th>Name</th>
		<th>Type</th>
		<th>Battle Group</th>
		<th>Status</th>
		<th>Lang</th>
	</tr>
<?php foreach($json["realms"] as $veri){ ?>
	<tr>
		<td><?=$veri["name"]?></td>
		<td><?=$veri["type"]?></td>
		<td><?=$veri["battlegroup"]?></td>
		<td><?=$veri["status"]?></td>
		<td><?=$veri["locale"]?></td>
	</tr>
<?php } ?>
</table>