Contact

We cover the whole of Kent in the southeast of England.

Please enable JavaScript in your browser to complete this form.
Name
Interested in

Contact us on 07739469293 to book an appointment!

= 1) { // Block the IP permanently file_put_contents($blocked_ips_file, $user_ip . PHP_EOL, FILE_APPEND); die(‘Your IP address has been permanently blocked from submitting the form.’); } else { // Increment the count for the IP $_SESSION[‘form_submissions’][$user_ip]++; } // Handle form submission logic if ($_SERVER[‘REQUEST_METHOD’] === ‘POST’) { // Process form data here $name = $_POST[‘name’]; $email = $_POST[’email’]; $message = $_POST[‘message’]; // Add your email sending or database saving logic here echo ‘Thank you for your enquiry.’; } ?>