20

PHOTO EMBED

Mon Mar 04 2024 01:01:56 GMT+0000 (Coordinated Universal Time)

Saved by @codewarrior

$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.";
}
content_copyCOPY