I have something to add to my question above. It might not be in creating the table but in populating the table with my php code. Attached is my code that I am using to upload my information. Please take a look and let me know where I went wrong and why my database has so many extra records.
<?php include("db_connect.php");?>
<?php // select the database in which to add a table
mysql_select_db("final_exam_db",$con);
$sql ="INSERT INTO drivers_0115061 (ln,fn,month,day,year,name,email)
VALUES ('".$_POST["ln"]."',
'".$_POST["fn"]."',
'".$_POST["month"]."',
'".$_POST["day"]."',
'".$_POST["year"]."',
'".$_POST['file']['name']."',
'".$_POST["email"]."'
)";
mysql_query($sql, $con);
echo mysql_error();
?>
<?php include("image_upload.php");?>
<?php include("db_close.php");?>
Thank you in advance.