What are some common methods for displaying the day of the week along with a date retrieved from a MySQL database in PHP?

When retrieving a date from a MySQL database in PHP, you can use the `DATE_FORMAT` function in your SQL query to format the date along with the day of the week. This function allows you to specify the format of the date output, including the day of the week.

// Retrieve date from MySQL database
$date = $row['date'];

// Format date with day of the week
$formatted_date = date('l, F j, Y', strtotime($date));

// Display date with day of the week
echo $formatted_date;