<?php
switch ($var) {
case ("02100" || "02700" || "02500"):
/*
rest of code......
*/
break;
}
?>
Does this work???? (i mean the || statement(s) in combination with a switch
statement?
Marcel
switch ($var) {
case ("02100" || "02700" || "02500"):
/*
rest of code......
*/
break;
}
?>
Does this work???? (i mean the || statement(s) in combination with a switch
statement?
Marcel
Comment