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