what front end are you planning to use ?
php and browser...then its simple
if (!$_POST['submit']){
show_form();
}esle{
update_data();
}
function show_form()
{
//php and html code to create the form
}
function update_data()
{
//here goes the php to get the data and place it in the db
//this can be done inline (with the db connection in the page)
//or using an include("connection.php"); which stores all the
//connection strings and passwords in a file that gets included
//in the script
//[b]you decide which one you are gonna use
//there are plenty of examples here-->search for them
//i know i've left lots
[/b]
}