Server : LiteSpeed System : Linux us-phx-web1202.main-hosting.eu 4.18.0-553.84.1.lve.el8.x86_64 #1 SMP Tue Nov 25 18:33:03 UTC 2025 x86_64 User : u615232177 ( 615232177) PHP Version : 8.1.33 Disable Function : NONE Directory : /home/u615232177/domains/florencewaltersconsulting.com/public_html/admin7362/ |
<?php session_start();
$page_name = basename($_SERVER['PHP_SELF']);
include("headerstrict.php"); ?>
<?php $page_title = "Other Images"; $page_title_url = "other_images_"; ?>
<title><?php echo $company_name; ?> - <?= $page_title ?></title>
<!-- Body main section starts -->
<main>
<div class="container-fluid">
<div class="row m-1">
<div class="col-12">
<h4 class="main-title"><?= $page_title ?></h4>
</div>
</div>
<div class="row mt-4 mb-4">
</div>
<div id="data" class='row blog-section'></div>
</div>
</main>
<?php include("footer.php"); ?>
<script>
function loadData() {
$("#data").load("ajax/<?= $page_title_url ?>fetch.php");
}
$(document).ready(function () {
loadData();
});
</script>