P's advice is correct, but if you wanted to still use switch, you could do this:
switch ($action) {
case "this result":
case "another result":
case "that result":
case "last result":
print "do this";
break;
}
not as evident as the if example, but....