PHP Call to undefined nameless function () on elseif statement -
the following if/elseif/else statement returning call undefined function () ... on line 111 error don't understand:
<?php if ( $this->next_payment_date < date('y-m-d') ) : ?> <?php elseif ( ($this->loan_status == 'v') && ($this->extra_payment == '0.00') ) : ?> <?php elseif ( ($this->loan_status == 'v') && ($this->extra_payment > '0.00') ) : ?> <?php elseif ( $this->loan_status == 'c' ) : ?> <?php else : ?> <?php endif; ?> line 111 matches first elseif statement.
$this-> accesses object keys simple string data. no fields null
Comments
Post a Comment