In php is there a way to say 'or' in an if statement, so, for example, I want to say "if string = 1 OR 2" do this.
Can you do this and if so how?
Thanks, Jonathon.
Yes.
You can use the keyword "or", or "||" as in C/C++
I suggest that you read the PHP Manual on logical operators.