5 lines
209 B
PHP
5 lines
209 B
PHP
<?php
|
|
$routes = json_decode(file_get_contents("routes.json"), true);
|
|
$stops = json_decode(file_get_contents("stops.json"), true);
|
|
$busposition = json_decode(file_get_contents("busposition.json"), true);
|
|
?>
|