Date Formats
%d - day of the month, 2 digits with leading zeros; i.e. "01" to "31"
%j - day of the month without leading zeros; i.e. "1" to "31"
%D - day of the week, textual, 3 letters; i.e. "Fri"
%w - day of the week, textual, long; i.e. "Friday"
%m - month, 2 digits with leading zeros; i.e. "01" to "12"
%n - month without leading zeros; i.e. "1" to "12"
%M - month, textual, 3 letters; i.e. "Jan"
%F - month, textual, long; i.e. "January"
%Y - year, 4 digits; i.e. "1999"
%y - year, 2 digits; i.e. "99"
Format String  Sample Output
-------------  -------------
%n-%j-%y       1-5-00
               10-7-99
               11-29-00

%d/%m/%Y       01/05/2000
               10/07/1999
               11/29/2000

%w, %M %d %Y   Wednesday, Jan 5 2000
               Thursday, Oct 10 2000
               Wednesday, Nov 29 2000