if statement for php 2 different conditions to go to page code example
Example: php multi condition if
if($var == "abc" || $var == "def" || ...)
{
echo "true";
}
if($var == "abc" || $var == "def" || ...)
{
echo "true";
}