Server IP : 172.16.15.8 / Your IP : 3.144.43.194 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/kfmurray/www/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<!-- File Name: StudentInfo.php CS480 Assignment 7, Project a Due: March 13, 2018 Author: Kevin Murray Instructor: Dr. Wang Goal: Create student registration page: first page will let user input name, select gender and year. Second page will have check boxes for CS class and Math classes. Third page will output all information. --> <CENTER> <style> body { background-color: aquamarine; } </style> <H2> Input information below for Student Registration </H2> <HR> <FORM action=ClassInfo.php method=post> Name <INPUT type=text name=name> <P> <select name=gender> <?php print "<option> Male </option>"; print "<option> Female </option>"; ?> </select> <P> <select name=year> <?php print "<option> Freshman </option>"; print "<option> Sophomore </option>"; print "<option> Junior </option>"; print "<option> Senior </option>"; ?> </select> <P> <INPUT type=submit value=Submit> <INPUT type=reset value=Reset> </FORM> </CNETER>