update api

This commit is contained in:
Zichao Lin 2023-11-25 20:18:34 +08:00
parent 90f506153f
commit 839f79eca2
Signed by: earthjasonlin
GPG Key ID: 406D9913DE2E42FB

11
api.php

@ -8,4 +8,13 @@ $sql = "SELECT * FROM soul ORDER BY RAND() LIMIT 1";
$result = mysqli_query($conn, $sql);
$row = mysqli_fetch_assoc($result);
//输出json
echo json_encode(array('code' => 1, 'data' => $row['title']));
echo json_encode(array(
"code" => 0,
"message" => "OK",
"data" => array(
"id" => $row["id"],
"title" => $row["title"],
"author" => $row["author"],
"from" => $row["from"]
)
));