is it possible to do an if comparison on more than 2 vars?
I have 6 vars that i want to check if they are all the same value as such,
if ($var1==$var2==$var3==$var4==$var5==$var6)
{
all match
}
else
{
they don;t match
}
is this possible or do i need to do nested ifs ?? I suspect the latter but you never know.
Jamie