Forum Moderators: coopster
Can someone please point me to a simple way to convert
example: 200804019 to 19th April 2008
Many Thanks
<?php $original = '200804019'; $timestamp = mktime(0,0,0, substr($original, 4, 2), substr($original, 6), substr($original, 0, 4)); echo date('jS F Y', $timestamp);?>
Andrew