Viewing File: /home/quiczmwg/public_html/admin/nav.php
<?php
date_default_timezone_set('Africa/Lagos');
$currentHour = date('H');
// Greetings based on the current hour
if ($currentHour >= 5 && $currentHour < 12) {
$greeting = 'Good morning, Admin!';
} elseif ($currentHour >= 12 && $currentHour < 18) {
$greeting = 'Good afternoon, Admin!';
} else {
$greeting = 'Good evening, Admin!';
}
?>
<div>
<div class="row page-titles">
<div class="col-md-5 align-self-center">
<!-- <div class="container-fluid"> -->
<h4 class="my-2 text-bold text-promary">
<h5 id="greeting"></h5>
<script>
// JavaScript to display the greeting
document.addEventListener('DOMContentLoaded', function() {
var greetingElement = document.getElementById('greeting');
var greeting = '<?php echo $greeting; ?>';
greetingElement.innerHTML = greeting;
});
</script>
<br>
</h4>
<!-- <h4 class="text-themecolor">Port Harcourt Pleasure Park</h4> -->
</div>
<div class="col-md-7 align-self-center text-right">
<div class="d-flex justify-content-end align-items-center">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="dashboard.php"><h4 class="text-themecolor">Quick-wittedtraded </h4></a></li>
</ol>
<!-- <button type="button" class="btn btn-success d-none d-lg-block m-l-15"><i class="fa fa-plus-circle"></i> Sign up</button> -->
<!-- The Modal -->
<div class="">
<div class="" id="">
</div>
<!-- End of sin up -->
</div>
</div>
</div>
</div>
</div>
</div>
Back to Directory
File Manager
<