Help for this page

Select Code to Download


  1. or download this
    for my $y ($year .. $year + 8) { # this is inclusive
      print "<option value = '$y'>$y</option>\n";
    }
    
  2. or download this
    print "<option value = '$_'>$_</option>\n"
      for $year .. $year + 8;