Mega Code Archive
Categories
/
Php
/
Statement
What happens when there are no break keywords
$action = "ORDER"; switch ($action) { case "ORDER": echo "order assembly.
"; case "PACKAGE": echo "packing.
"; case "SHIP": echo "shipping.
"; } ?>