Date/Time/PHP/mysql/ date format not working – workaround below.

Where

| created           | timestamp       | NO   |     | CURRENT_TIMESTAMP   |                |

and

<td><? echo date(“d/m/y”,$row['created']); ?></td>

would not work so use

<td><? echo date(“d m y (D)”, strtotime($row['created'])) ?></td>

Leave a Comment