moodblog/api/shields-mood.php

19 lines
373 B
PHP
Raw Permalink Normal View History

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