forum

Home / DeveloperSection / Forums / php dates off by one day

php dates off by one day

Anonymous User228318-May-2013
Hi Everyone!

I am changing int(11) in a mysql database back into regular date formats (mm/dd/yyy) It is working fine except it appears to be one day behind. Any ideas on what could be causing this?

The code I am using to change it from int(11) to mm/dd/yyy is below: (yes it is part of a larger script, this is just the one line that includes the date.)

echo "<td>" . date('m/d/Y', $row['due_date']) . "</td>";
Wihout the td's:

echo date('m/d/Y', $row['due_date]);
In my particular testing it should be returning: 07/01/2013 and it is returning: 06/30/2013

Thanks in advance! 

Updated on 18-May-2013
I am a content writter !

Can you answer this question?


Answer

1 Answers

Liked By