Thanks guys.
I now have a database
I have found elsewhere how to connect to the DB and have the following code.
<?php
// open connection to mysql server
// dbc is a variable
$dbc = mysql_connect ('localhost','airfield_data','mypassword');
if (!dbc){
die("not connected :" . mysql_error());
}
// select the database
$db_selected = mysql_select_db ("airfield_data",$dbc);
if (!db_selected)
{
die ("cant connect :" . mysql_error());
}
// test
$query="UPDATE ";
?>
So my question is now how to write the submission script? If someone could please give me the code to add my data to the database (only one I'll do the rest obviously)