<table cellspacing='2' class="toppart" align='center'>
<tr><td colspan=8 align="left" bgcolor=1D0E80 height=80 style="vertical-align: bottom;">
<font face="Arial" color="white" size=5><br>
University of Toronto: Course Scheduler
</font></td>
</tr><tr height=12>
<td bgcolor=FF8080></td><td bgcolor=FFD851></td><td bgcolor=6ACF54></td>
<td bgcolor=45D99E></td><td bgcolor=408080></td><td bgcolor=00A2E8></td>
<td bgcolor=A349A4></td><td bgcolor=DB9A37></td>
</tr></table>
<br>
<div align="center">
<font face="Arial">
<table cellpadding='5'><tr><td align='center'>
<?php 
navigationBar($sem);
print displaySchedule($schedule, $sem);
?>
</td>
<td align='left' style="vertical-align: top;">
<br>
Add a new course:<br>
<form action="insertcourse.php?sem=<?php 
echo $sem;
?>
" id='courses' method='post'>
<select name='dept' id = 'depts' form='courses' onChange="deptselect();">
<?php 
// generate a select form field to choose a department
foreach ($depts as $value) {
    echo "<option value='{$value}'>{$value}</option>";
Exemple #2
0
/**
 * Display html footer and closing html tag
 *
 * @param string $id    ID of docbook chunk (manual page id)
 * @param string $title Manual page title
 *
 * @return void
 */
function manualFooter($id, $title = '')
{
    echo "</div>\n";
    global $HTDIG;
    if (!$HTDIG) {
        navigationBar($id, $title, 'bottom');
    }
    response_footer();
}
Exemple #3
0
function manualFooter($title, $id = "")
{
    global $HTDIG;
    if (!$HTDIG) {
        navigationBar($title, $id, "bottom");
    }
    response_footer();
}