This repository has been archived on 2023-01-06. You can view files and clone it, but cannot push or open issues or pull requests.
web/public/api/get_times.php
2022-01-24 11:54:42 +01:00

11 lines
205 B
PHP

<?php
$app = require '../../app/inc.php';
$sql = 'SELECT * FROM tidtabell';
$stmt = $app->database->conn->prepare($sql);
$stmt->execute();
$app->api([
"data" => $stmt->fetchAll(PDO::FETCH_ASSOC)
]);