Help for this page

Select Code to Download


  1. or download this
    printf 'Certification is %s on %02d % 02d %d<p><HR>',
        $certification, $month, $day, $year;
    
  2. or download this
    for (my $i=1; $i<=$lines; $i++) {
        my $certification = shift(@data);
    ...
        my $year = shift(@data);
        # printf ....
    }
    
  3. or download this
    while(@data){
      ...
    }
    
  4. or download this
    use Date::Calc qw/Month_to_Text/;
    while(@data){
    ...
      my $month = Month_to_Text($number);
      ...
    }