Formatting Date and Time in Drupal
Snippet to change the node created on date for use in story nodes:
In node-story.tpl.php or other node tpl:
<?php print format_date($node->created, 'custom', 'F jS, Y'); ?>Prints:
March 25th, 2009
Check out php.net for complete list!