Hi ... how can i have 2 possibily for an if statement :
if ($type == "1" or "2") {
...
what's the good way to write the code ???
if (($type == "1") || ($type == "2")) { }