How do I specify in an IF statement OR
like
if($this=="$that" OR "$that2") {
That wont work
How do I specify that OR in an IF statement?
It's all in the use of parenthesis:
if (($banana == "yellow") || ($apple == "red")) { echo "the colors are correct"; }
You have to specify it twice:
if(($this=="$that") or ($this=="$that2")) {
Diego