Server IP : 172.16.15.8 / Your IP : 52.15.136.223 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/ipjoslyn/public_html/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<!-- evaluationInsert.php Ian Joslyn 4/17/2022 Allows user to insert an entry into the EVALUATION table. --> <?php session_start(); $pass=$_SESSION['psw']; if($pass != "project") { print "<FONT color=red> Incorrect Password </FONT>"; include ("project5Login.html"); } else { ?> <CENTER> <H1> Course Evaluation </H1> <HR> <FORM action=evaluation.php method=post> Gender:<BR> <input type=radio name=gender value=Male> Male <input type=radio name=gender value=Female> Female <input type=radio name=gender value=Other> Other <P>Student Status:<BR> <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 Number: <input type=text size=10 name=coursenum> <P> <P> Professor Lecture Preparation:<BR> <input type=radio name=lectPrep value=0> Poor <input type=radio name=lectPrep value=1> Average <input type=radio name=lectPrep value=2> Good <P>Level of Student Participation:<BR> <input type=radio name=stuPart value=0> Poor <input type=radio name=stuPart value=1> Average <input type=radio name=stuPart value=2> Good <P>Course Rating:<BR> <input type=radio name=rating value=0> Poor <input type=radio name=rating value=1> Average <input type=radio name=rating value=2> Good <HR> <input type=submit value=Submit> <input type=reset value=Reset> </FORM> <A HREF=index.html> HOME | </A><A HREF=project5.php> BACK </A> </CENTER> <?php } ?>