How would I convert a date formatted like this Thu, 08 Jul 2010 15:51:01 into a date like this Thursday July 8th, 2010 3:51 pm. Also, how would I f
Thu, 08 Jul 2010 15:51:01
Thursday July 8th, 2010 3:51 pm
http://pl2.php.net/manual/en/function.date.php
echo date("l F jS, Y", strtotime("Thu, 08 Jul 2010 15:51:01"));