Files
intecsync/uebung10/questions-show.php
2019-07-11 12:45:46 +02:00

16 lines
233 B
PHP

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