PHP Switch Statement Conditional statements are used to perform different actions based on different conditions. The PHP Switch StatementUse the switch statement to select one of many blocks of code to be executed.Syntax switch (n){case label1: code to be executed if n=label1; break;case label2: code to be executed if n=label2; break;default: code to be executed if n is different from both label1 and label2;} This is how it works: First we have a single expression n (most often a variable), that is evaluated once. The value of the expression is then compared with the values for each [...]
↧