ok what i am trying to do is see if multiple values are all yes.
idk if what i think is right, actually is right.
$1 = "yes";
$2 = "yes";
$3 = "no";
if ( ($1 && $2 && $3) == "yes" ) {
$thing = "you";
} else {
$thing = "me";
}
thanks in advance