I'm trying to get the easter_date from this year. This is my code:
<?php
$year = date ("Y");
$easter = date ("d-M-Y", easter_date ($year));
echo "Easter " . $year . ": " . $easter . "";
?>
When I execute the code following error appears: Fatal error: Call to undefined function easter_date() in
My phpVersion is 5.3.3. I'm using Linux(Ubuntu).
Have you got an idea what is missing?