Server IP : 172.16.15.8 / Your IP : 3.144.17.181 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/kabillups/public_html/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php session_start(); $pass = $_SESSION['psw']; if($pass != "ch7hw") print "Nice try hacker, GO AWAY!"; else { $name1 = $_POST['myFirstName']; $_SESSION['n1'] = $name1; $name2 = $_POST['myLastName']; $_SESSION['n2'] = $name2; $gender = $_POST['gender']; $_SESSION['gen'] = $gender; $class = $_POST['class']; $_SESSION['cla'] = $class; $course = $_POST['course']; $_SESSION['cou'] = $course; ?> <center> <h2> Class Survey </h2> <hr> <FORM action=assignment3asession3.php method=post> <P> <HR> 1. The instructor arrived at class on time. <INPUT type=radio name=q1 value="Strongly Agree"> Strongly Agree <INPUT type=radio name=q1 value="Agree"> Agree <INPUT type=radio name=q1 value="Disagree"> Disagree <INPUT type=textbox name=text1> <HR> <P> <HR> 2. The instructor was prepared for class. <INPUT type=radio name=q2 value="Strongly Agree"> Strongly Agree <INPUT type=radio name=q2 value="Agree"> Agree <INPUT type=radio name=q2 value="Disagree"> Disagree <INPUT type=textbox name=text2> <HR> <P> <HR> 3. The instructor graded all assignments fairly. <INPUT type=radio name=q3 value="Strongly Agree"> Strongly Agree <INPUT type=radio name=q3 value="Agree"> Agree <INPUT type=radio name=q3 value="Disagree"> Disagree <INPUT type=textbox name=text3> <HR> <P> <HR> 4. The instrctor explained the material clearly. <INPUT type=radio name=q4 value="Strongly Agree"> Strongly Agree <INPUT type=radio name=q4 value="Agree"> Agree <INPUT type=radio name=q4 value="Disagree"> Disagree <INPUT type=textbox name=text4> <HR> <P> <INPUT type=submit value="Submit Form"> <INPUT type=reset value="Reset Form"> </FORM> </center> <?php } ?>