add shields tunes endpoint

This commit is contained in:
emilyd 2022-11-26 10:44:22 +02:00
parent 7985cf3c5d
commit 3299636a46

18
api/shields-tunes.php Normal file
View File

@ -0,0 +1,18 @@
<?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";
}
?>
}