<?php
$title = 'Registration';

date_default_timezone_set("America/Vancouver"); // Set default time zone
 
$time = date("H"); // Set the time in 24 hour format

if (06 <= $time && $time < 20) // 12:00am to 7:00am   Night
   {
include 'includes/top.php';
include 'en/reg.inc.php';
include 'includes/bottom.php';
}

else {
include 'includes/top.php';
include 'en/reg.inc.php';
include 'includes/bottom.php';
}
 
?>