Thanks again for your help with everything yesterday. Of course, as soon as I sent the revised page to them they asked if it could do something else! They want the Research Needed emails to go to two different people depending on which brands are checked. Here's my attempt at sending an email if Research Needed is set to "yes" and one of these three brands is checked:
if (isset($_POST["research_needed"]) && $_POST["research_needed"] === "yes" and isset($_POST["brand_clv"]) || isset($_POST["brand_wd"]) || isset($_POST["brand_prev"])) { // research needed
$recipients[] = "email@domain.com";
}
Am I even in the ballpark here?