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/atrobert/www/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<!-- Assignment 2-3, Aleya Roberts, CourseEvaluationForm.php --> <?php session_start(); $studentname = $_POST["studentname"]; $course = $_POST['course']; $_SESSION["studentname"] = $studentname; $_SESSION['course'] = $course; ?> <center> <H2> Course Evaluation Form </H2> <br> <FORM action=CourseEvaluationAct.php method=post> 1. Did you fight any dragons in this course? <INPUT type=radio name=q1 value=StronglyAgree > A. Strongly Agree <INPUT type=radio name=q1 value=Agree > B. Agree <INPUT type=radio name=q1 value=Disagree > C. Disagree <P> <HR> 2. Did the professor prepare you to fight dragons well? <INPUT type=radio name=q2 value=StronglyAgree > A. Strongly Agree <INPUT type=radio name=q2 value=Agree > B. Agree <INPUT type=radio name=q2 value=Disagree > C. Disagree <HR> <input type=submit value=Submit> <input type=reset value=Reset> </form> </center>