in reply to Need help with a loop (i think)
If its monthly, you can use the month day return value from localtime() to play with. You could also use a temp file to store the month/day that the file was first created and index everything from that, creating a new file when the month value changes and reseting the index to 0.my $cell = (localtime)[6] + 1; $worksheet->write($cell, 0, "$month $date"); $worksheet->write($cell, 0, $day);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Need help with a loop (i think)
by vxp (Pilgrim) on Aug 20, 2002 at 15:14 UTC | |
by waswas-fng (Curate) on Aug 20, 2002 at 15:28 UTC | |
by Mr. Muskrat (Canon) on Aug 20, 2002 at 21:51 UTC | |
by reyjrar (Hermit) on Aug 20, 2002 at 16:27 UTC |