Try the following code:
// Newsdate is a column from a database table
list($Year, $Month, $Day) = explode('-', $NewsDate);
$UseDate = Date("l jS F Y", mktime(0, 0, 0, $Month, $Day, $Year));
Displays a date in the following format:
Wednesday 2nd August 2000
Hope it helps.
Berb Brown