Mega Code Archive

 
Categories / Php / Statement
 

Using switch to test for multiple values

<? $action = "ADD"; switch ($action) {     case "ADD":         echo "Perform actions for adding.";         break;     case "MODIFY":         echo "Perform actions for modifying.";         break;     case "DELETE":         echo "Perform actions for deleting.";         break; } ?>