Projekt

Obecné

Profil

Stáhnout (250 Bajtů) Statistiky
| Větev: | Revize:
1
<?php
2
require "../model/DB.php";
3
session_start();
4

    
5
if ($_SESSION['role'] == "admin") {
6
    $DB = new DB();
7

    
8
    $results = $DB->select("SELECT id, username, role from USERS", array());
9

    
10
    echo json_encode(count($results) == 0 ? null : $results);
11
}
(10-10/10)