<!DOCTYPE html>
<html>
<body>
<?php
$a = 3;
switch($a) {
case 1:
echo "One";
break;
case 2:
echo "Two";
case 3:
echo "Three";
}
?>
</body>
</html>