[snip]
People, hope you can help. The below IF statement is getting a PARSE error.
Can anyone spot why?

  if (($this->checkReferralCB($this->benefitRef, $this->benefitNo,
$this->childDOB))
  && (!$this->checkLocation($this->post, "W")) && (!empty($this->childDOB)))
  || ($this->checkPregnancy($this->benefitRef, $this->benefitNo))
[/snip]

It's not complete, where is the {} curly braces? And you're parentheses are
out of order by one...

  if (($this->checkReferralCB($this->benefitRef, $this->benefitNo,
$this->childDOB))
  && (!$this->checkLocation($this->post, "W")) && (!empty($this->childDOB))
  || ($this->checkPregnancy($this->benefitRef, $this->benefitNo)))

standard...

If((this) && (that) && (theother) || (something else)){
        do this
}

Jay



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to