Help for this page

Select Code to Download


  1. or download this
    my $appearances = [];
    while ( my $ref = $sth->fetchrow_hashref() ) {
    ...
       my $eps = $appearances->[$season -1 ]->{eps};
       push @$eps, $ref;
    }
    
  2. or download this
    $appearances = 
    [
    ...
          [ 
            {season => 1, ep => 1, title => 'Hellmouth' },
            ......