code will not work on web site will work in tryit editor
<!DOCTYPE html>
<html>
<body>
<?php
$today = date("D");
switch($today){
case "Mon":
echo "Today is Monday.PRAY for all of our priest father James father Philips ";
break;
case "Tue":
echo "Today is Tuesday. PRAY ";
break;
case "Wed":
echo "Today is Wednesday. PRAY for family members brother sisters mother father ";
break;
case "Thu":
echo "Today is Thursday. PRAY for the men and women in uniform serving our county. Police officers EMTs, Paramedics, Nurses, Doctors, Fire Fighters ";
break;
case "Fri":
echo "Today is Friday. PRAY ";
break;
case "Sat":
echo "Today is Saturday. PRAY";
break;
case "Sun":
echo "Today is Sunday. PRAY ";
break;
default:
echo "No information available for that day.";
break;
}
?>
</body>
</html>
