I know this gets tedious, but I've posted several, more general, questions and haven't gotten a response that quite works. I'm going to try one more time, but with the exact nature of the problem in the hopes that maybe I just haven't been very clear before.
I have a MySQL timestamp field that I'd like to display in a more user friendly manner. I've tried using the date() function, but with no luck.
MySQL Timestamp Value : 20020211192917
PHP Display Code : echo date ( 'd.M.Y', $last_update );
PHP Display Result : 18.Jan.2038
From tons of reading, I thoroughly understand the significance of the date being displayed, but I have no idea why I'm not getting the correct date. Is what I'm trying to do impossible with PHP? If not, what am I missing?
Thanks for any help.