/lenasys/0.1

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/lenasys/0.1

« back to all changes in this revision

Viewing changes to trunk/DuggaSys/quizSystem/data/displayData.html.php

  • Committer: Henrik G.
  • Date: 2013-03-26 23:22:55 UTC
  • Revision ID: henrik.gustavsson@his.se-20130326232255-ik6snyatlbkf3zs1
First seed of Lenasys ... Needs to be Organized Further

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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
?>
 
 
b'\\ No newline at end of file'