in reply to Re: Time::ParseDate issues
in thread Time::ParseDate issues

The parsedate function will return undef value, if the time format is not correct.
The time format is hh:mm:ss.
You can add the digit zero in front of hour and minute.
You can use the following code:
$min = "0".$min if(length($min) == 1); $hour= "0".$hour if(length($hour) == 1);