Help for this page
Select Code to Download
Select
or
download this
use strict;my$yr=(localtime(time))[5];print "Beta has expired\n" if $yr>102;
Select
or
download this
print "Beta has expired\n" if ((localtime(time))[5]>102);
Select
or
download this
print "Beta has expired\n" if (time() > 1034816374);