Sorry, this is a really easy question, and I don't know it.. What is the symbol for OR in php?
example: If($msgbox == "one" [OR] $msgbox == "two" ) { $whatever = "something"; }
you can quite literally, use OR
If($msgbox == "one" OR $msgbox == "two" ) { $whatever = "something"; }
or you can use the symbol ||
If($msgbox == "one" || $msgbox == "two" ) { $whatever = "something"; }