I want to compare current date\'s day and month with subscription date\'s day and month only. ex.current date(d-m) = 3-6 and I want compare it with any other
use like
$current_date = date("d-m"); $subscription = "03-06-2016"; $subscription_date = date("d-m", strtotime($subscription)); if($current_date ==$subscription_date) { echo "date is equal"; }else { echo "date is not equal"; }