in reply to Adding to a date using Time::localtime
use DateTime; my $dt = DateTime->now; $dt->add( days => 14 ); [download]
Phil