Help for this page

Select Code to Download


  1. or download this
    $xf = 0;
        
    $sthf->execute;
    ...
        $filiais[$xf] = $dataf[0];
        $xf++;
    }
    
  2. or download this
    while (my ($col) = $sthf->fetchrow_array())
    {
        push @filiais, $col;
    }
    
  3. or download this
     for ($m=1; $m<=12; $m++)#Make an array of months
            {
    ...
            
            foreach $months(@months)
            {
    
  4. or download this
    foreach my $month (1 ... 12)
    {