Function
echo date( "m/d/Y h:i a", "10/22/2009 12:32 am" );
Output
12/31/1969 07:00 pm
Why is my output not giving me the correct date, what am I doing wrong?
echo date( "m/d/Y h:i a", "10/22/2009 12:32 am" );
12/31/1969 07:00 pm
Why is my output not giving me the correct date, what am I doing wrong?
How you can read in the PHP Documentation for the date function the second parameter must be an unix timestamp. You can use the mktime Function to convert your date into a timestamp.