PHP - Conditional Statements
What will be the output of this PHP code?
$color = 'red';
switch ($color) {
case 'blue':
echo 'Blue color';
break;
case 'red':
echo 'Red color';
break;
default:
echo 'No color';
}