added a section to improve layout

This commit is contained in:
Gary 2026-03-23 11:48:11 +00:00
parent 312ab6bf8d
commit 1e71bd2c6c

View File

@ -29,19 +29,21 @@ include_once $URLcorrection . 'includes/header.php';
<?php <section class="padding-top-50 padding-bottom-50">
<?php
$ch = curl_init('https://loft-boarding.co.uk/global/LOFT-E_lite.php'); $ch = curl_init('https://loft-boarding.co.uk/global/LOFT-E_lite.php');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($_REQUEST)); curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($_REQUEST));
echo "<div class='container'>"; echo "<div class='container'>";
echo "<br><br><br>"; echo "<br><br><br>";
echo curl_exec($ch); echo curl_exec($ch);
echo "</div>"; echo "</div>";
curl_close($ch); curl_close($ch);
include_once $URLcorrection . 'includes/footer.php'; include_once $URLcorrection . 'includes/footer.php';
?> ?>
</section>