I am doing something simple. 1 field named "date" in the mysql table is a timestamp field. 14 characters.
i am pulling it into php and trying to format it there. I am using the following code:
$date=(date("m/d/Y", $date));
echo "$date";
in mysql, the field is exactly as follows:
20020227151714
when i echo the date in php, the following date shows:
01/18/2038
Any suggestions why I am getting such a far off date?