bzr branch
http://gegoxaren.bato24.eu/bzr/lenasys/0.1
1 2 3 4 5 6 7 8 9 10 11 |
<?php //parseForm.php //Fetch all courses from Course-table to populate dropdown-list $querystring = "SELECT * FROM Course"; $stmt = $pdo->prepare($querystring); $stmt->execute(); $courseList=$stmt->fetchAll(PDO::FETCH_ASSOC); //Display student registration form $content="registerStudents/parseForm.html.php"; ?> |