1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<!-- start_view.php -->
<div id="wrapperstartview">
<div id="topdivstartview">
<div id="logotransparantstartviewdiv"></div>
<div id="topdivtextstartview">
Learning platform where students can<br/>
view and edit examples and do quizzes<br/>
created by their teachers.
</div>
<div id="topdivfsbs">Created by students for students.</div>
</div>
<div id="botdivstartview">
<div id="botheaderstartview">Courses in LenaSYS</div>
<div id="coursestarviewlinks">
<?php
//$courses
foreach ($courses as $courseName){
echo "<a href='#'>".$courseName->name."</a>";
};
?>
</div>
</div>
</div>
|