North-east-loft-boarding/contact.php
2026-03-20 08:56:13 +00:00

65 lines
2.2 KiB
PHP
Raw 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="banner-content">
<div class="text-container">
<span class="top-tag">North East Loft Boarding</span>
<h1 class="stand-out-text">Lets Build Something Together</h1>
<p>Reach out to our team to discuss your next project, technical requirements, or loft storage needs.
<strong>Simply complete the form below to get started</strong> and we will be in touch shortly.
</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>
</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";
?>