Forum Moderators: coopster
i.e. this
case "Tabby" ¦¦ "Siamese" ¦¦ "Manx":
echo "This is a cat";
break;
case "Labrador" ¦¦ "Alsatian" ¦¦ "Rottweiler":
echo "This is a dog";
break;
or should it be like this
case "Tabby":
case "Siamese":
case "Manx":
echo "This is a cat";
break;
case "Labrador":
case "Alsatian":
case "Rottweiler":
echo "This is a dog";
break;