Instant GDS World Booking |
$hour = date("H");
$minute = date("i");
$seconds = date("s");
$day = date("d");
$month = date("m");
$year = date("Y");
$hour = $hour + 3.3; // This is the offset from the server time to your time.
// mktime ( int hour, int minute, int second, int month, int day, int year [, int is_dst])
echo date ("H:m M-d-Y", mktime ($hour,$minute,$seconds,$month,$day,$year));
?>
|
|
|
|