hmm the long way i gues...
BUT
if (($row["regent_primclass"] == Druid) || ($row["regent_primclass"] == Cleric) || ($row["regent_secclass"] == Druid) || ($row["regent_secclass"] == Cleric))
{
$no1 = "no_";
$no2 = "";
}
else
{
if (($row["regent_primclass"] != Wizard)|| ($row["regent_secclass"] != Wizard))
{
$no1 = "no_";
$no2 = "no_";
}
else
{
if (($row["regent_primclass"] == Wizard)|| ($row["regent_secclass"] == Wizard))
{
$no1 = "";
$no2 = "";
}
}
}
still sets the $no1 and $no2 to "no_" when the primclass or secclass is wizard.....
(and isnt there a shorter way to write this up?)