Hey guys
My host recently upgraded phpMyAdmin to version 2.8.0.2.
Until recently, I had no problems creating TimeStamps and setting them to store the current time for whenever a new record was added to the table, worked perfectly.
With this new version of phpmyadmin, the timestamp in the column is read out as 2006-07-07 02:11:07
I thought phpmyadmin was being clever here, secretly hiding the true mysql_timestamp of long numbers and rendering it into more readable form, then I realised that this is actually how the data is stored in the column.
It is giving me problems in my scripts when I want to format the data because it doesnt understand it as a propper timestamp, which is understandable.
How do I get phpmyadmin to work the way it used to with propper timestamps? Or am I going to have to actually insert the timestamps myself from the php scripts?
Thanks in advance