How would I format a timestamp which is used to show when a quote was
created in a record set.
This is the echo -
<?php echo($row_rsquo te['created']); ?>
I tried doing this -
<?php echo date('D, m/d/Y',$row_rsquote['created']); ?>
but all I get is Monday, 01/18/2038.
Can anyone tell me how I can echo the value in the correct date format ?
Thanks
created in a record set.
This is the echo -
<?php echo($row_rsquo te['created']); ?>
I tried doing this -
<?php echo date('D, m/d/Y',$row_rsquote['created']); ?>
but all I get is Monday, 01/18/2038.
Can anyone tell me how I can echo the value in the correct date format ?
Thanks
Comment