1
<h2>Database dump</h2>
3
$querystring="SHOW TABLES;";
4
$stmt = $pdo->prepare($querystring);
6
foreach($stmt->fetchAll() as $row){
7
displayTable($row[0],$pdo);
10
displayTable("Student",$pdo);
11
displayTable("Course",$pdo);
12
displayTable("StudentCourseRegistration",$pdo);
13
displayTable("Quiz",$pdo);
14
displayTable("QuizVariant",$pdo);
15
displayTable("CompletedQuizzes",$pdo);*/
b'\\ No newline at end of file'