I want to compare current date's day and month with subscription date's day and month only. For example:
current date(d-m) = 3-6
And I want compare it with any other d-m
How should I do it in PHP
In my project condition is like birth date in which we don't compare year.
date("d-M", strtotime("<your_Date_here"))
– Thamilhan