|
|
|
|
|
<html>
<body>
<h2>Weekplan</h2>
<table border=1>
<tr>
<th>Week</th><th>Lecture</th>
</tr>
<?php
$lecture = array("Introduction","JavaScript","PHP","MySQL");
for($week=1;$week<5;$week++) {
print("<tr><th>".$week."</th>");
print("<th>".$lecture[$week-1]."</th></tr>\n");
};
?>
</table>
</body>
</html>
|
|
|
|