7 lines
236 B
PHP
7 lines
236 B
PHP
<?php
|
|
include("./php/OpenLDBWS.php");
|
|
include("/srv/keys/athena/apiKeys.php");
|
|
$OpenLDBWS = new OpenLDBWS($ldbKey);
|
|
$response = $OpenLDBWS->GetDepartureBoard(10,"PAD");
|
|
header("Content-Type: text/plain");
|
|
print_r($response); |