in reply to Format user entered date?
Thanks. I've tried using Date::Parse but I was getting output similar to this:
$fulltime = $fields[2] . " " . $fields[3]; $str2time = str2time($fulltime); [download]
FULLTIME 7/20/2009 21:32:27 STR2TIME: 1248143547
So you need to format your output too. That can be done with a combination of localtime and POSIX::strftime for example.