I need to change the format of a date in PHP. Can you show me how?

In my PHP code I return the date a user received a private message on their account. The date doesn't look visually appealing and I hear there are different ways to output the date.

Here is the line of code that needs changing:

echo "Received on:" . $rowA['Date'] . "<br /><br />";

I would rather the date read like this: Monday 12th April 2010, 10:37AM
 
Back
Top