in reply to Re: use of date n time functions
in thread use of date n time functions

Could you pls give me a sample showing how to use Date::Calc to compare dates??

Replies are listed 'Best First'.
Re^3: use of date n time functions
by ZlR (Chaplain) on Mar 10, 2010 at 11:18 UTC

    It's all in the Date::Calc help page : look at the recipes

    For instance :

    use Date::Calc qw( Delta_Days ); if (Delta_Days($year1,$month1,$day1, $year2,$month2,$day2) > 0)
    There's also examples about : How do I compare two dates with times? , which might be just what you need.