{% else-1 %}
(6 дек 2016, 18:12) (0/0) [0]
Ну как то так.
Подключение к базе сам напишешь.
<?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);
}
?>
(6 дек 2016, 17:27) (0/0) [0]
del
  • 1 из 1