Server IP : 172.16.15.8 / Your IP : 3.144.42.173 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/kfmurray/www/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<!-- File name: Survey Page.php --> <?php session_start(); ?> <?php $passcode = $_SESSION['psw']; if($passcode != "ch7hw") print "Go Away!!!"; else { ?> <CENTER> <STYLE> body { background-color: cyan; } </STYLE> Please answer the folowing questions below <HR> <?php $name = $_POST['Name']; $gender = $_POST['gender']; $year = $_POST['year']; $courseNum = $_POST['courseNum']; $_SESSION['name'] = $name; $_SESSION['gender'] = $gender; $_SESSION['year'] = $year; $_SESSION['cNum'] = $courseNum; ?> <FORM action=SurveyResults.php method=post> 1. Overal this course was a value to me <INPUT type=radio name=q1 value="Strongly Agree" checked> Strongly Agree <INPUT type=radio name=q1 value="Agree"> Agree <INPUT type=radio name=q1 value="Not Agree"> Not Agree <P> 2. The professor returned graded work in a timely manner <INPUT type=radio name=q2 value="Strongly Agree" checked> Strongly Agree <INPUT type=radio name=q2 value="Agree"> Agree <INPUT type=radio name=q2 value="Not Agree"> Not Agree <P> 3. The professor shown enthuasism towards the subject <INPUT type=radio name=q3 value="Strongly Agree" checked> Strongly Agree <INPUT type=radio name=q3 value="Agree"> Agree <INPUT type=radio name=q3 value="Not Agree"> Not Agree <P> 4. The professor used class time efficently <INPUT type=radio name=q4 value="Strongly Agree" checked> Strongly Agree <INPUT type=radio name=q4 value="Agree"> Agree <INPUT type=radio name=q4 value="Not Agree"> Not Agree <P> <INPUT type=submit value=Submit> <INPUT type=reset value=Reset> </FORM> </CENTER> <?php } ?>