-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.php
33 lines (33 loc) · 1019 Bytes
/
index.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?php include "class/courses.php" ?>
<!DOCTYPE html>
<html>
<head>
<?php include "header.php"; ?>
</head>
<body>
<?php session_start(); include "menu.php" ?>
<div id="content">
<header>Disciplinas <?php include "login.php" ?></header>
<div id="main-content">
<?php foreach (Courses::getCoursesByPerfil() as $perfil=>$perfilData) { ?>
<section>
<header>Perfil <?= $perfil ?></header>
<ul>
<?php foreach ($perfilData as $course) { ?>
<a href="disciplina.php?id=<?= $course['id'] ?>"><li><?= $course['nome'] ?></li></a>
<?php } ?>
</ul>
</section>
<?php } ?>
<section>
<header>Optativas</header>
<ul>
<?php foreach (Courses::getOptinalCourses() as $course) { ?>
<a href="disciplina.php?id=<?= $course['id'] ?>"><li><?= $course['nome'] ?></li></a>
<?php } ?>
</ul>
</section>
</div>
</div>
</body>
</html>