<!DOCTYPE html>
<html>
<body>
<?php
$d = 4;
switch ($d) {
default:
echo "Looking forward to the Weekend";
break;
case 6:
echo "Today is Saturday";
case 0:
echo "Today is Sunday";
}
?>
</body>
</html>