Answer:
<!DOCTYPE html>
<html>
<body>
<?php
$year = 2032;
if((0 == $year % 4) & (0 != $year % 100) | (0 == $year % 400))
{
echo "$year is a Leap Year.";
}
else
echo "$year is not a Leap Year.";
?>
</body>
</html>
Step-by-step explanation:
4.5m questions
5.7m answers