Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
sub Time {
$timeoffset = 0;
($sec,$min,$hour,$mday,$mon,$year) = localtime(time + (3600*$timeoffset));
$hour = "0$hour" if ($hour < 10);
$min = "0$min" if ($min < 10);
$sec = "0$sec" if ($sec < 10);
$mday = "0$mday" if ($mday < 10);
$mon = "0$mon" if ($mon < 10);
$year = 2000 + ($year - 100);
# Date and time variables
$Date = "$mon-$mday-$year";
$Time = "$hour:$min:$sec";
}