Help for this page

Select Code to Download


  1. or download this
    use strict;my$yr=(localtime(time))[5];print "Beta has expired\n" if $yr>102;
  2. or download this
    print "Beta has expired\n" if ((localtime(time))[5]>102);
  3. or download this
    print "Beta has expired\n" if (time() > 1034816374);