JSProgramIA
Programmer
The Problem:
I am retrieving a timestamp field from a mySQL database running on Apache. I am trying to take this timestamp, and within PHP convert it to something actally readable.
The record is being returned as follows:
Contribting Factors?
These records were initially generated on a windows box. Not sure if that makes a difference.
My Ideal Results:
I would like to take the above result and be returned the following, which I could use in PHP:
Anyone know of a way?
Regards.
I am retrieving a timestamp field from a mySQL database running on Apache. I am trying to take this timestamp, and within PHP convert it to something actally readable.
The record is being returned as follows:
Code:
mysql> select last_updated from hours where project_id =2;
+----------------+
| last_updated |
+----------------+
| 20051214212002 |
+----------------+
Contribting Factors?
These records were initially generated on a windows box. Not sure if that makes a difference.
My Ideal Results:
I would like to take the above result and be returned the following, which I could use in PHP:
Code:
December 14, 2005 8:00pm
Anyone know of a way?
Regards.