bigly-chat/docs/api/followjson.php

18 lines
317 B
PHP
Raw Normal View History

2025-02-03 06:51:31 -05:00
<?php
2025-02-05 01:27:45 -05:00
require(__DIR__ . "/../../libs/page.php");
2025-02-03 06:51:31 -05:00
2025-02-05 01:27:45 -05:00
function get_handler()
{
global $db;
2025-02-03 06:51:31 -05:00
2025-02-05 01:27:45 -05:00
$stmt = $db->prepare("SELECT * FROM main.follow");
$stmt->execute([]);
$result = $stmt->fetchAll(PDO::FETCH_DEFAULT);
$result = array_reverse($result, true);
echo json_encode($result);
}
get_handler();