the edit page passes it all over to the update.php page
here's the code for my updated.php page (the page i'm passing the info to)
$username="";
$password="";
$database="*";
mysql_connect(localhost,$username,$password);
$query="UPDATE submit SET first_name='$ud_first_name', last_name='$ud_last_name', street_address='$ud_street_address', parish='$ud_parish', postal_code='$ud_postal_code', home_telephone='$ud_home_telephone', work_telephone='$ud_work_telephone', email_address='$ud_email_address', WHERE id='$ud_id'";
@mysql_select_db($database) or die( "Unable to select database");
mysql_query($query);