in reply to Adding to a date using Time::localtime

DateTime makes this fairly easy:
use DateTime; my $dt = DateTime->now; $dt->add( days => 14 );
Update: Changed to use now.

Phil