Hi, anyone have any idea why my date is being displayed as 1110288534 in my page. I checked the DB and the date looks fine there but when I echo it out it shows like this
1110288534
here is the echo code
while (!$Recordset1->EOF) {
$maindates = $Recordset1->Fields("maindate");
echo ".$maindates->value.";
$Recordset1->MoveNext();
}
The result on screen like said is: 1110288534 etc even though it has a right date displying in the DB itself.
Any suggestions?
1110288534
here is the echo code
while (!$Recordset1->EOF) {
$maindates = $Recordset1->Fields("maindate");
echo ".$maindates->value.";
$Recordset1->MoveNext();
}
The result on screen like said is: 1110288534 etc even though it has a right date displying in the DB itself.
Any suggestions?