in reply to Date Operations

If you just need the date and not the time, and you're not running the script at 12 am or 11 pm, you could use something like this...
use strict; use POSIX qw[strftime]; my $date = strftime('%d/%m/%Y', localtime(time + 60 * 60 * 24 * 15));

Joshua