Files
intecsync/uebung10/api.php
2019-07-11 12:50:54 +02:00

17 lines
276 B
PHP

<?php
require_once(__DIR__ . '/Database.php');
header('Content-Type: application/json');
$db = new Database();
$n = 0;
if (isset($_GET['n'])) {
$n = $_GET['n'];
}
$questions = $db->getQuestions($n);
$questionsobj = json_encode($questions);
echo($questionsobj);
?>