This commit is contained in:
Gary 2026-03-23 11:50:51 +00:00
parent bff0bf999f
commit 05a4761c53

View File

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