This works best
<?php
// make date normal day month dd, yyyy
$mysqldate = $row_rsclass['reunion_date'];
$mydate = date("l F j, Y",strtotime($mysqldate));
echo $mydate;
?>
To echo a Mysql DATE field in a way that can be read use these formats:
Saturday, October 11, 2014 <?php echo date("l, F d, Y",strtotime($row_rsclass['date']));?>
January 15, 2014 <?php echo date("F d, Y",strtotime($row_rsclass['date']));?>
Wednesday, January 15, 2014 <?php echo date("l, F d, Y",strtotime($row_rsclass['date']));?>
Jan 15, 2014 <?php echo date("M d, Y",strtotime($row_rsclass['date']));?>
15 January 2014 <?php echo date("d F Y",strtotime($row_rsclass['date']));?>
15 Jan 2014 <?php echo date("d M Y",strtotime($row_rsclass['date']));?>
Wed, 15 Jan 2014<?php echo date("D, d M Y",strtotime($row_rsclass['date']));?>
Wednesday, the 15th of January, 2014 <?php echo date("l",strtotime($row_rsclass['date'])) . ", the " . date("jS",strtotime($row_rsclass['date'])) . " of " . date("F, Y",strtotime($row_rsclass['date']));?>
For a listing of all date time php codes look here:
http://webglobalnet.net/support/index.php?topic=1060.0