North-east-loft-boarding/contact.php
2026-03-20 11:44:20 +00:00

67 lines
2.3 KiB
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
$URLcorrection = "";
$PageTitle = "Contact Us";
$metadescription = "Contact Loft Boarding North East for all your loft boarding and storage needs. Get in touch for a free quote today!";
$metakeywords = "Contact Loft Boarding North East, Loft Boarding, Loft Storage, Free Quote, Contact Us, Customer Service, North England, Scottish Borders";
include_once $URLcorrection . "includes/header.php";
?>
<section class="contact-banner">
<div class="banner-overlay"></div>
<div class="container">
<div class="banner-content">
<div class="text-container">
<span class="top-tag text-white">North East Loft Boarding</span>
<h1 class="stand-out-text">Lets Build Something Together</h1>
<p>As the North Easts loft specialists, were here to help you maximize your storage space. From professional boarding to safe ladder access,
<strong>complete the form below</strong> to get your project moving with a free quote.
</p>
<div class="contact-icons">
<p>Or give us a call at:</p>
<a href="tel:01913561008" title="Call Us"><i class="fas fa-phone"></i></a>
</div>
</div>
</div>
</div>
</section>
<section class="padding-top-50 padding-bottom-50">
<?php
$location = "North East Loft Boarding";
$page = "Contact";
$PageTitle = "Contact Us";
$metadescription = "Contact Loft Boarding North East for all your loft boarding and storage needs. Get in touch for a free quote today!";
$metakeywords = "Contact Loft Boarding North East, Loft Boarding, Loft Storage, Free Quote, Contact Us, Customer Service, North England, Scottish Borders";
$ch = curl_init('https://loft-boarding.co.uk/global/contact.php');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
// Adding additional variable to the request
$data = array(
'location' => $location,
);
// Merge additional data with $_REQUEST
$request_data = array_merge($_REQUEST, $data);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($request_data));
echo "<div class='container'>";
echo "<br><br><br>";
echo curl_exec($ch);
echo "</div>";
curl_close($ch);
?>
</section>
<?php
include_once $URLcorrection . "includes/footer.php";
?>