Server IP : 172.16.15.8 / Your IP : 3.135.204.43 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/tmrandall/public_html/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<!-- Assign2Que3session.php Author: Taylor Randall Instructor: Dr. Wang Due: Sunday Feb. 19, 2023 --> <?php session_start(); ?> <CENTER> <H1> Questions </H1> <HR> <H3> <?php $name = $_POST['name']; $courses = $_POST['courses']; $_SESSION['v1'] = $name; $_SESSION['v2'] = $courses; print "Student's Name: $name <p>"; print "CS Course:CS $courses <p>"; ?> <HR> </H3> <FORM action=Assign2Que3session2.php method=post> Answer Below: <p> How prepared was the instructor for each class and the course in general?<BR> Strongly-Agree<input type=radio name=rate value= Strongly-Agree><BR> Agree<input type=radio name=rate value= Agree><BR> Not-Agree<input type=radio name=rate value= Not-Agree><BR> <P> Did the course materials complement each other and increase your knowledge of the subject?<BR> Strongly-Agree<input type=radio name=rate2 value= Strongly-Agree><BR> Agree<input type=radio name=rate2 value= Agree><BR> Not-Agree<input type=radio name=rate2 value= Not-Agree><BR> <p> <INPUT type=submit value="Submit Form"> <INPUT type=reset value="Reset Form"> </Form