Server IP : 172.16.15.8 / Your IP : 18.119.137.175 Web Server : Apache System : Linux zeus.vwu.edu 4.18.0-553.27.1.el8_10.x86_64 #1 SMP Wed Nov 6 14:29:02 UTC 2024 x86_64 User : apache ( 48) PHP Version : 7.2.24 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home/asbright/www/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<!-- courseEvalForm.php --> <?php session_start(); $pswd = $_SESSION['pswd']; if($pswd != "project") { ?> <script type="text/javascript"> <!-- window.location = "courseEval2Login.php" --> </script> <html> <head> <title>Error Page</title> <div style="text-align:center"> <h1>Invalid Username/Password</h1> </div> </head> <?php include("navbar.php"); ?> <div style="text-align:center"> <br/><br/><br/><br/> <button><a href="courseEval2Login.php">Go back</a></button> </div> </html> <?php } else { $CSCourses = array("CS100", "CS110", "CS112", "CS201", "CS205", "CS212", "CS310", "CS311", "CS331", "CS350", "CS380", "CS430", "CS440", "CS470", "CS480", "CS489"); $MathCourses = array("Math005", "Math104", "Math135", "Math136", "Math150", "Math171", "Math172", "Math189", "Math205", "Math210", "Math217", "Math273", "Math274", "Math310", "Math316", "Math319", "Math325", "Math326", "Math333", "Math340", "Math350", "Math410", "Math419", "Math470", "Math471", "Math480", "Math487", "Math489"); ?> <!doctype html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="styling.css"> <title>Student Course Evaluation Form</title> </head> <body> <div style="text-align:center"> <h1> Student Course Evaluation Form </h1> </div> <?php include("navbar.php"); ?> <div style="text-align: center"> <form action=courseEval2Action.php method=post> <fieldset style="margin-top: 5vh"> <legend> Gender </legend> <div> <select name=Gender required> <option value=Male>Male</option> <option value=Female>Female</option> </select> </div> </fieldset> <fieldset style="margin-top: 5vh"> <legend> Status </legend> <div> <select name=Status required> <option value=Freshman>Freshman</option> <option value=Sophmore>Sophmore</option> <option value=Junior>Junior</option> <option value=Senior>Senior</option> </select> </div> </fieldset> <fieldset style="margin-top: 5vh"> <legend> Course </legend> <div> <select name=Course required> <?php for($i=0;$i < count($CSCourses); $i++) print "<option value=$CSCourses[$i]> $CSCourses[$i]</option>"; for($i=0;$i < count($MathCourses); $i++) print "<option value=$MathCourses[$i]> $MathCourses[$i]</option>"; ?> </select> </div> </fieldset> <fieldset style="margin-top: 5vh"> <legend> How did you feel the professor was in regards lecture preparation? </legend> <div> <div style="padding-left: 0vw;"> <input type=radio name=LecPrep value=0 default>Poor</input> </div> <div style="padding-left: 1.35vw;"> <input type=radio name=LecPrep value=1>Average</input> </div> <div style="padding-left: 0.25vw;"> <input type=radio name=LecPrep value=2>Good</input> </div> </div> </fieldset> <fieldset style="margin-top: 5vh"> <legend> Did you feel like there was enough chance for student participation? </legend> <div> <div style="padding-left: 0vw;"> <input type=radio name=StuPar value=0 default>Poor</input> </div> <div style="padding-left: 1.35vw;"> <input type=radio name=StuPar value=1>Average</input> </div> <div style="padding-left: 0.25vw;"> <input type=radio name=StuPar value=2>Good</input> </div> </div> </fieldset> <fieldset style="margin-top: 5vh"> <legend> Overall satisfaction with the course? </legend> <div> <div style="padding-left: 0vw;"> <input type=radio name=Overall value=0 default>Poor</input> </div> <div style="padding-left: 1.35vw;"> <input type=radio name=Overall value=1>Average</input> </div> <div style="padding-left: 0.25vw;"> <input type=radio name=Overall value=2>Good</input> </div> </div> </fieldset> <div style="padding-top: 10vh; padding-left: 0vw;"> <input type=submit value=Submit> <input type=reset value=Reset> </div> </form> </div> <p> <div style ="text-align: center;"> <button><a href="courseEval2Splash.php">Back</a></button> <br/><br/><br/> <button><a href="courseEval2Login.php">Logout</a></button> </div> </p> <?php include("time.php"); ?> </body> </html> <?php } ?>