What potential issues can arise when using semicolons instead of colons to terminate case conditions in PHP switch-case statements?

Using semicolons instead of colons to terminate case conditions in PHP switch-case statements can lead to syntax errors and unexpected behavior in your code. To solve this issue, make sure to use colons (:) to terminate each case block within the switch statement. This will ensure that your code executes correctly and follows the proper PHP syntax rules.

$day = "Monday";

switch ($day) {
    case "Monday":
        echo "Today is Monday";
        break;
    case "Tuesday":
        echo "Today is Tuesday";
        break;
    default:
        echo "Today is not Monday or Tuesday";
}