42 lines
1.6 KiB
PHP
42 lines
1.6 KiB
PHP
<?php
|
|
$URLcorrection = "";
|
|
$PageTitle = "Prices & Packages";
|
|
$metadescription = "Loft Boarding Prices & Packages, Loft Boarding Cost, Loft Boarding Ideas, Raised Loft Boarding, Loft Boarding Regulations, UK Loft Boarding, Loft Boarding Packages, New Build Loft Boarding";
|
|
$metakeywords = "Loft Boarding Prices & Packages, Loft Boarding Cost, Loft Boarding Ideas, Raised Loft Boarding, Loft Boarding Regulations, UK Loft Boarding, Loft Boarding Packages, New Build Loft Boarding";
|
|
include_once $URLcorrection . "includes/header.php";
|
|
|
|
?>
|
|
|
|
<section class="new-build-banner">
|
|
<div class="banner-overlay-2"></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">Prices & Packages</h1>
|
|
<p>Discover our affordable loft boarding solutions in the North East. Get a free quote today!</p>
|
|
<div class="">
|
|
<a href="<?= $URLcorrection ?>contact" class="customer-quote-button">Arrange a free quote</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<?php
|
|
|
|
$ch = curl_init('https://loft-boarding.co.uk/global/Global_Price_List.php?contactURL=https://loft-boarding.com/contact/');
|
|
|
|
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
|
|
|
|
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($_REQUEST));
|
|
echo "<div class='container'>";
|
|
echo "<br><br><br>";
|
|
echo curl_exec($ch);
|
|
echo "</div>";
|
|
curl_close($ch);
|
|
|
|
|
|
include_once $URLcorrection . "includes/footer.php";
|
|
|
|
?>
|