in reply to The day of today

There are a lot of good ways to handle dates.

Example with Date::Calc
use Date::Calc; my ( $year, $month, $day ) = Today();
Example with Date::Manip
use Date::Manip; print UnixDate("today","It is %b %e, %Y");