$day = 5; #test variable $month = 7; #test variable $day = sprintf("%02d",$day); $month = sprintf("%02d",$month); print "$day\n$month";