<?php
$thisyear = date("Y");
$today = date("m.d.y");
$easter = date("m.d.y", easter_date($thisyear));
if ($today == $easter) {
echo "Today is easter";
}
else {
echo "Easter is on $easter.";
}
?>
This may be kind of a stupid question but, is there a way to find good friday from this?
(Good Friday is the Friday before Easter Sunday)