$day = "Monday";
switch ($day) {
case "Monday":
echo "It's the start of the week.";
break;
case "Friday":
echo "It's almost the weekend!";
break;
default:
echo "It's a regular day.";
}
$day = "Monday";
switch ($day) {
case "Monday":
echo "It's the start of the week.";
break;
case "Friday":
echo "It's almost the weekend!";
break;
default:
echo "It's a regular day.";
}