so i'm trying to collect data from people, then store it in a database for starters.
ex:
<form action="USERS.PHP" method="post" name="newuser">
<table>
<tr>
<td>First Name:</td>
<td><input name="fname" type="text" maxlength="20"></td>
</tr><br>
so on and son on for like 11 different fields
then users.php looks like this
mysql_query("INSERT INTO brothers (fname, lname, address, phone, Email, major, year, in, big, little)
VALUES( '$fname', '$lname', '$address', '$phone', '$Email', '$major', '$year', '$in', '$big', '$little')") or die (mysql_error());