exit;
}
if (isset($_GET["graph1"])) {
    graph1();
    exit;
}
if (isset($_GET["graph2"])) {
    graph2();
    exit;
}
if (isset($_GET["graph3"])) {
    graph3();
    exit;
}
if (isset($_GET["www-table"])) {
    section_table();
    exit;
}
if (isset($_GET["www-search"])) {
    section_search();
    exit;
}
if (isset($_GET["www-members"])) {
    section_members();
    exit;
}
if (isset($_GET["members-search"])) {
    section_members_search();
    exit;
}
if (isset($_POST["NoCategorizedAnalyze"])) {
Example #2
0
	<fieldset class="scheduler-border">
	<legend class="scheduler-border">Section Excel Sheet Upload:</legend>
		<p>
		Please upload the section excel sheet below:<br>
		<input type="file" name="file">
		</p>
		<div>
		<input type="submit" name="section" value="Upload" style="float:right">
		</div>
<?php 
if (isset($status)) {
    print '<div id="' . $status[0] . '">' . $status[1] . '</div>';
}
?>
	</fieldset>
	</form>
<form action="section.php" method="post">
<p style="text-align:center;">
<input type="submit" name="sectionlist" id ="sectionlist" value="View Section List">
</p>
</form>
<?php 
if (isset($_POST['sectionlist'])) {
    section_table($_SESSION['dept'], $_SESSION['year'], $_SESSION['season']);
}
?>



</body></html>