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.
my ($sec, $min, $hr, $day_of_month, $month, $year, $wday, $yday, $isdst) = localtime(0);
$month++;
$year += 1900;
$sec = '0' . $sec if ($sec < 10);
$min = '0' . $min if ($min < 10);
$hr = '0' . $hr if ($hr < 10);
print "The epoch was $month/$day_of_month/$year $hr:$min:$sec\n";