41 lines
1.1 KiB
PHP
41 lines
1.1 KiB
PHP
<?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";
|
|
|
|
?>
|
|
|
|
|
|
<div class="breadcumb-wrapper text-center padding-top-100" data-bg-src="<?= $URLcorrection ?>assets/media/banner-images/about-us-banner.jpg">
|
|
<h1><?= $PageTitle ?></h1>
|
|
</div>
|
|
|
|
<?php
|
|
|
|
$location = "Loft Boarding NW";
|
|
|
|
|
|
$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);
|
|
|
|
include_once $URLcorrection . "includes/footer.php";
|
|
|
|
?>
|