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.
# Get current month
@t = localtime();
$tmon = $t[4] + 1;
$tmon = "0" . $tmon if ($tmon < 10);
$tyear = $t[5] + 1900;
$firstday = join("-", $tmon, "01", $tyear);
print "first day of month was $firstday \n";
# Get yesterday's date
$time = time();
@y = localtime($time - 86400); # 1 day is 86400 seconds
$ymon = $y[4] + 1;
$ymon = "0" . $ymon if ($ymon < 10);
$ymday = $y[3];
$ymday = "0" . $ymday if ($ymday < 10);
$yyear = $y[5] + 1900;
$ydate = join("-", $ymon, $ymday, $yyear);
print "yesterday's date was $ydate \n";