Server IP : 172.16.15.8 / Your IP : 13.59.183.186 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/vgmiller/hello/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<!-- Author: Valerie Miller Instructor: Dr. Wang File Name: EvalForm.html Due Date: April 17, 2018 Goal: TO make a form that allows a student to enter basic information that will be input into the course EVAL table. --> <CENTER> <H2>Course Evaluation Form</H2> <HR> <form action=EvalDisplay.php method=post> <table style="border: 1px solid black; background-color:C6C6C6"> <tr> <td> Select your year:<P> <INPUT type=radio name=y value="Freshman" checked>Freshman<BR> <INPUT type=radio name=y value="Sophomore">Sophomore <BR> <INPUT type=radio name=y value="Junior"> Junior <BR> <INPUT type=radio name=y value="Senior"> Senior<BR> <P> <HR> <P>Input the course:<P> <input type=text size=20 name=course> <P> <HR> <P>Your evaluation of the course:<P> <INPUT type=radio name=e value=0>Poor<BR> <INPUT type=radio name=e value=1>Average<BR> <INPUT type=radio name=e value=2>Good<BR> <P> </td> </tr> </table> <P> <input type=submit value=Submit> <input type=reset value=Reset> <P> <A HREF="EvalHomePage.html"><input type="button" value="Eval Home"></A> </form> </CENTER>