in reply to RE: Multiple file reading
in thread Multiple file reading

The operators 'and', 'or', and 'xor' are logical operators.
They will not work in this context (at least not the way
you want them to).

They are equal to &&, || and (!$a != !$b), respectively.

For binary operations use &, | and ^.

-- ar0n