2 or more variables get checked?

Hey all =)


if ($variable1 == "something") {
-script here-
}

Is there a way I can make it so that 2 (or more) variables at the same time get 'if’ed?

As in:

if ($variable1 == “something”) AND ($variable2 == “something else”) {

Tried googling it and tried my usual php info pages, but didn’t find anything; any help would be appreciated!