That's what I thought at first. However, it seems to be pulling the correct timestamp. The code that I'm using to display the timestamp data is:
while ($qry = mysql_fetch_array($getorders))
{
$getdate = $qry[orderdate];
$orderdate = date("m-d-Y", $getdate);
echo "<b>Date:</b> ".$orderdate;
}
echo $getdate; // displays 20031111134416, the timestamp value
echo $orderdate; // displays 01-18-2038, the incorrect date (which indicates that my earlier post was incorrect when I said that the m/d are working properly)
Therefore, it seems to be pulling a valid timestamp. Are there other factors that I need to check? I must be doing something wrong here.