I've got a datetime field called submitDate in a MySQL database.
I'm using PHP to read and display it as follows:
$submitDate = $row['submitDate'];
echo $submitDate;
It shows as:
2008-03-05 06:28:58
The format is cool, but now, I need to add 12 hours to that date and show it, so it should show
2008-03-05 18:28:58
How can I do this, using PHP?
Help much appreciated. Thanks.