I need to determine if a date (month and day) is between two other month/days.
I\'ve attached an image to this post that describes what I\'m trying to do. Basically
Try like this.
date("M-d", $start_date) && date("M-d", $check_date)
Working code is here