North-east-loft-boarding/loft-e-adjustable.php
2026-03-10 10:31:34 +00:00

32 lines
638 B
PHP

<?php
$URLcorrection = "";
include_once $URLcorrection . 'includes/header.php';
?>
<section class="loft-e padding-top-50 padding-bottom-50 text-center">
<div class="container">
<h1 class="margin-bottom-30 stand-out-text">LOFT-E Adjustable</h1>
</div>
</section>
<?php
$ch = curl_init('https://loft-boarding.co.uk/global/LOFT-E.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);
include_once $URLcorrection . 'includes/footer.php';
?>