1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<!-- examplesBody.php -->
<div id="exampleBodyMenu">
<h1 class="temph1">Students</h1>
<!-- Only displayed when teacher -->
<a class="btn cp">Add student</a>
</div>
<div id="bodyContainer">
<!-- Loops down below makes it possible to load values from a source -->
<?php
foreach ($students as $key => $value){
echo '<div id="'.$value.'" class="banner row">
<h1 class="categoryName" name="'.$value.'">'.$value.'</h1>';
echo '</div>';
}
?>
</div>
</div>
</body>
</html>
|