Update your Contact Details
[?php if ($_POST[submit]) {
$to = ” paul@loberman.net”;
$msg .= “First Name: “;
$msg .= $_POST["fname"];
$msg .= “\n\n”;
$msg .= “Surname: “;
$msg .= $_POST["sname"];
$msg .= “\n\n”;
$msg .= “Address 1: “;
$msg .= $_POST["address1"];
$msg .= “\n\n”;
$msg .= “Address 2: “;
$msg .= $_POST["address2"];
$msg .= “\n\n”;
$msg .= “Address 3: “;
$msg .= $_POST["address3"];
$msg .= “\n\n”;
$msg .= “Address 4: “;
$msg .= $_POST["address4"];
$msg .= “\n\n”;
$msg .= “Address 5: “;
$msg .= $_POST["address5"];
$msg .= “\n\n”;
$msg .= “Post Code: “;
$msg .= $_POST["postcode"];
$msg .= “\n\n”;
$msg .= “Email: “;
$msg .= $_POST["email"];
$msg .= “\n\n”;
$msg .= “Home phone: “;
$msg .= $_POST["homephone"];
$msg .= “\n\n”;
$msg .= “Mobile: “;
$msg .= $_POST["mobile"];
$msg .= “\n\n”;
$from = “From: ” .$_POST["email"]. “”;
mail ($to, “Update of Contact Details”, $msg, $from);
echo ‘
Your message has been sent. Thank you for taking the time to fill out this form.
‘; } else {
echo ‘
To keep up to date with all the latest from Maccabi Bowling GB Tenpin Bowling, please complete the following form.
This information will be held my Maccabi GB in accordance with the Data Protection Act 1998.
‘; } ?]