17 lines
346 B
PHP
17 lines
346 B
PHP
|
<?php
|
||
|
require(__DIR__ . "/../../libs/page.php");
|
||
|
|
||
|
function get_handler() {
|
||
|
global $db;
|
||
|
|
||
|
$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();
|
||
|
?>
|