egytalk-sveltekit/www/public/api/getusers.php

15 lines
333 B
PHP

<?php
session_start();
$result= [];
$statusCode = 401;
if (isset($_SESSION['uid'])){
include('../../model/DbEgyTalk.php');
$db = new DbEgyTalk();
$result = $db->getUsers();
$statusCode = 200;
}
http_response_code($statusCode);
header('Content-Type: application/json');
echo json_encode($result, JSON_UNESCAPED_UNICODE);