PHPSwitchStatement«PreviousNextChapter»Conditionalstatementsareusedtoperformdifferentactionsbasedondifferentconditions.ThePHPSwitchStatementUsetheswitchstatementtoselectoneofmanyblocksofcodetobeexecuted.Syntaxswitch(n){caselabel1:codetobeexecutedifn=label1;break;caselabel2:codetobeexecutedifn=label2;break;default:codetobeexecutedifnisdifferentfrombothlabel1andlabel2;}T...