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
|
<!-- examplesBody.php -->
<div id="bodyContainer">
<div class="pinkBanner">
<h1 name="Quizzes">Quizzes</h1>
</div>
<!-- Loops down below makes it possible to load values from a source -->
<?php foreach ($titles as $category => $categoryArray):?>
<div class="blueBanner">
<h1 name="<?php echo $category;?>"><?php echo $category;?></h1>
</div>
<?php foreach ($categoryArray as $subCategory => $subCatArray):?>
<h3><?php echo $subCategory;?></h3>
<?php
if(count($subCatArray)>0){
foreach ($subCatArray as $example):?>
<p><a href="#"><?php echo $example;?></a></p>
<?php endforeach;}?>
<?php endforeach;?>
<?php endforeach;?>
</div>
</div>
</body>
</html>
|