Ну как то так.
Подключение к базе сам напишешь.
<?php
$data = file_get_contents("http://miscreatedgame.com/servers/api/servers_list.php"
;
$result = json_decode($data, true);
foreach ($result AS $item) {
list($name, $map, $online, $int, $time, $ip, $V) = $item;
//int - число 36 (к нему описания не было)
$sql = "INSERT INTO servers
(name, map, online, int, time, ip, v)
VALUES
('{$name}', '{$map}', '{$online}', '{$int}', '{$time}', '{$ip}', '{$V}')
"
mysql_query($sql);
}
?>