moodblog/api/shields-tunes.php

19 lines
374 B
PHP
Raw Normal View History

2022-11-26 08:44:22 +00:00
<?php
header('Content-Type: application/json');
require "../templates/config.php";
?>
{
"schemaVersion": 1,
"label": "current tunes",
"color": "lightgrey",
<?php
require "../creds.php";
$result = mysqli_query($mysqli, "SELECT Song FROM articles ORDER BY ID DESC LIMIT 1");
while($res = mysqli_fetch_array($result)) {
echo ' "message": "'.$res['Song'].'"',"\n";
}
?>
}