I use the following to print out a date:
<?php print date("Y-m-d H:i:s", $aUser["Created Date"]) ?>
// $aUser["Created Date"] contains "2003-08-18 14:21:47"
but what is printed out is the following:
1970-01-01 01:33:23
Any idea why?
thanks a lot in advance,
Bernhard
<?php print date("Y-m-d H:i:s", $aUser["Created Date"]) ?>
// $aUser["Created Date"] contains "2003-08-18 14:21:47"
but what is printed out is the following:
1970-01-01 01:33:23
Any idea why?
thanks a lot in advance,
Bernhard
Comment