ok, this is going to be a bit more elaborate than expected.
i want to preform an action when two variables match a set that i have specified.
ex:
i want to print the number 4 when id=2 AND class=NEW.
i would like to be able to specifiy a list of pairs to be able to assign.
now i am thinking that i need to speciify a key/value combo like: array=(OLD => 1, NEW=>2, CURRENT=>3);
i know two in_array() combos wont work because if the id=1 and class=CURRENT, i would know that the statement would return a true even though i need to make sure the key/value is the set to check against.
i hope this makes sense.
thanks