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