Glenn Cannon wrote: > > Thx japhy, > > Does exactly what I need it to. > > Now all I need is a way to work out the last day of the month. Most of them > should be easy, but that damn February... > It's always the best using an already existing module. E.g. Date::Calc:
use Date::Calc qw(Days_in_Month); my $days = Days_in_Month($year,$month); Greetings, Andrea -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]