How would I modify this line to not just select the date column but select all the columns and the date column as that FormatedDate?
$query = "SELECT DATE_FORMAT(dateEntry, '%a, %b %e %l:%i%p') as FormatedDate FROM calendar WHERE id LIKE '$id'";
$query = "SELECT *, DATE_FORMAT(dateEntry, '%a, %b %e %l:%i%p') as FormatedDate FROM calendar WHERE id LIKE '$id'";