How could i convert a date in the form: 19811019 into something easier to read.
Thnks... Paul
i would use strtotime to convert that into a timestamp, then use the date function to format the timestamp nicely...
-paul http://xhawk.net
There's a great article here on PHP Buider about working with dates. Here's where you can find it:
http://www.phpbuilder.com/columns/akent20000610.php3
Try something like
<?php echo("Today is ".date("F j, Y, g:i:s a")."<br>") ?>
--James--