North-east-loft-boarding/epp.php
2026-03-20 14:32:33 +00:00

54 lines
1.6 KiB
PHP

<?php
$URLcorrection = "";
$page = "EPP";
$PageTitle = "Easy Payment Plan";
$metadescription = "Easy Payment Plan for Loft Boarding NW. Flexible payment options to suit your budget. Get a free quote today!";
$metakeywords = "Easy Payment Plan, Loft Boarding NW, Flexible Payment Options, Free Quote, Loft Boarding, Storage Solutions";
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">Easy Payment Plan</h1>
<p>Flexible payment options to suit your budget. 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>
<section>
<div class="container">
<div class="row">
<?php
$ch = curl_init('https://loft-boarding.co.uk/global/EPP.php');
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);
?>
</div>
</div>
</section>
<?php
include_once $URLcorrection . "includes/footer.php";
?>