signup.html
<form method="POST" action="newuser.php">
<div align="left"><p><font face="BankGothic Md BT">Name</font>
<input type="text" name="name" size="14">
<br>
<p><font face="BankGothic Md BT">Email</font>
<input type="text" name="email" size="14">
<br>
<p><font face="BankGothic Md BT">Phone Number</font>
<input type="text" name="phonenum" size="14">
<br>
<input type="submit" value="Submit"></p>
</div></form>
newuser.php
<?
$db = mysql_connect("localhost", "root");
mysql_select_db("mydb",$db);
echo "Name: $POST['name'] Email: $POST['email'] Phonenumber: $POST['phonenum<BR>']";
mysql_query("INSERT INTO test VALUES ($POST['email'], $_POST['email'], 5554321, NULL);",$db);
echo "done";
?>