Hi!
How can i do multi switch function like Select Case in ASP:
Select Case Var
Case 100, 200 <--- couple of select variables
.....
Case Else
......
End Select
in php i tried:
switch (Var){
case "100" || "200": <--- how set couple variables in php ?
.....
default:
.....
}
but it not work correctly
Thx Robert