PHP - Conditional Statements
Identify the error in this PHP switch code:
$day = 3;
switch ($day) {
case 1:
echo 'Monday';
case 2:
echo 'Tuesday';
break;
default:
echo 'Other day';
}