Server IP : 172.16.15.8 / Your IP : 3.135.214.139 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/rkelly/www/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<!--Author: Raquel Kelly DUE: April 4, 2022 Professor Wang evalForm.html includes 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 evaluation (poor, average, and good). 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. --> <CENTER> <h2> Form for Course Evaluation </h2> <hr> <Font color=blue size=4> <Form action= Eval.php method=post> Status: Freshman <input type=radio name=stat value = Freshman> Sophomore <input type=radio name=stat value = Sophomore> Junior <input type=radio name=stat value = Junior> Senior <input type=radio name=stat value = Senior> <P> Course (ex: CS212, MAT172, etc): <input type=text size=10 name=course> <P> Rate: Poor <input type=radio name=rate value = 0> Average <input type=radio name=rate value = 1> Good <input type=radio name = rate value = 2> <P> <HR> <input type=submit value=Submit> <input type=reset value=Reset> </Form> </CENTER>