| Current Path : /home/ataenra/www/ATA/INTRANET/Outils/planing/ |
| Current File : /home/ataenra/www/ATA/INTRANET/Outils/planing/backend_resources.php |
<?php
require_once '_db.php';
$scheduler_resources = $db->query('SELECT * FROM resources ORDER BY name');
class Resource {}
$resources = array();
foreach($scheduler_resources as $resource) {
$r = new Resource();
$r->id = $resource['id'];
$r->name = $resource['name'];
$resources[] = $r;
}
header('Content-Type: application/json');
echo json_encode($resources);