Forum Moderators: coopster
in the database i have date values in this format: m.d.Y (eg 10.10.2006)
now i want to show the date values in a table in the following format: D M j, Y
so i tried this:
echo '<td>'.date("D M j, Y", $row['deadline']).'</td>';
but this gives the well-known Thu Jan 1, 1970 for every date value
how do I do this?
grtz