/lenasys/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/lenasys/trunk
1 by Henrik G.
First seed of Lenasys ... Needs to be Organized Further
1
<h2>Database dump</h2>
2
<?php
3
    $querystring="SHOW TABLES;";
4
	$stmt = $pdo->prepare($querystring);
5
	$stmt->execute();
6
	foreach($stmt->fetchAll() as $row){
7
		displayTable($row[0],$pdo);
8
	}
9
	/*
10
	displayTable("Student",$pdo);
11
	displayTable("Course",$pdo);
12
	displayTable("StudentCourseRegistration",$pdo);
13
	displayTable("Quiz",$pdo);
14
	displayTable("QuizVariant",$pdo);
15
	displayTable("CompletedQuizzes",$pdo);*/
16
?>