site/schedule/index.php

15 lines
458 B
PHP
Raw Normal View History

2020-06-18 06:21:52 +00:00
<?php
include '../header.php';
$schedule = json_decode(file_get_contents("https://radio.tildeverse.org/api/station/1/schedule"), true);
?>
<h1><a href="https://tilderadio.org"><img style="width:75px;" src="../logos/tilderadio-green.png">tilderadio.org</a></h1>
2020-06-18 04:07:03 +00:00
<br>
2020-06-18 06:21:52 +00:00
<h4>upcoming broadcasts</h4>
<?php foreach ($schedule as $item): ?>
<p><?=$item["name"]?> - <?=$item["start"]?>-<?=$item["end"]?></p>
<?php endforeach; ?>
2020-06-18 04:07:03 +00:00
<?php include '../footer.php'; ?>