put global code in section to improve padding and layout

This commit is contained in:
Gary 2026-03-23 11:47:30 +00:00
parent 0a16c802a2
commit 312ab6bf8d

View File

@ -29,19 +29,21 @@ include_once $URLcorrection . 'includes/header.php';
</section>
<?php
<section class="padding-top-50 padding-bottom-50">
<?php
$ch = curl_init('https://loft-boarding.co.uk/global/LOFT-E.php');
$ch = curl_init('https://loft-boarding.co.uk/global/LOFT-E.php');
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
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);
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';
include_once $URLcorrection . 'includes/footer.php';
?>
?>
</section>