sabret00the
02-01-2005, 10:34 AM
what i'm trying to do is
$appendix_a = TRUE;
$appendix_b = TRUE;
$appendix_overide = TRUE;
if ($appendix_a AND $appendix_b OR $appendix_overide)
{
$showappendix = "value";
}
so basically it's an if theirs two of on value or one of anotherconditional, how do i write that? do i need to encapsulate the firsttwo in brackets or anything of the sort?
$appendix_a = TRUE;
$appendix_b = TRUE;
$appendix_overide = TRUE;
if ($appendix_a AND $appendix_b OR $appendix_overide)
{
$showappendix = "value";
}
so basically it's an if theirs two of on value or one of anotherconditional, how do i write that? do i need to encapsulate the firsttwo in brackets or anything of the sort?