i have a index.php file im useing if you would like to see that
<?php
$history = $_POST['history'];
$name = $_POST['name'];
$alias = $_POST['alias'];
$license = $_POST['license'];
$activewarrents = $_POST['activewarrents'];
$ltc = $_POST['ltc'];
$submit = $_POST['submit'];
if(isset($submit))
{
}
mysql_connect("**************","**********","********") or die(mysql_error());
mysql_select_db("**********") or die(mysql_error());
$insert = mysql_query("INSERT INTO users VALUES ('','$name','$alias','$license','$activewarrents','$ltc','$history')") or die(mysql_error());
die ("<a href='userpage.php?user=$name'> Click Here To View Record</a> ");
?>
<html>
<body>
<h4> Enter Your ... </h4>
<form method='POST' action='index.php'>
Name: <input type='text' name='name'><br>
Alias: <input type='text' name='alias'><br>
License: <input type='text' name='license'><br>
ActiveWarrents: <input type='text' name='activewarrents'><br>
LTC: <input type='text' name='ltc'><br>
History: <input type='text' name='History'><br>
<input type='submit' value='Go!' name='submit'>
</form>
</body>
</html>