I'm trying to format a date from a post variable. When you type in: 05-05-2016 it will display as May 5, 2016. But when you type 05-12-2016, it will display as December 5, 2016. The format is below:
echo date("F d, Y", strtotime($wedding_date));
The format I would like is: Month Day, Year