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

Popular posts from this blog

php - Passing multiple values in a url using checkbox -

compilation - PHP install fails on Ubuntu 14 (make: *** [sapi/cli/php] Error 1) PHP 5.6.20 -

sql - Postgresql tables exists, but getting "relation does not exist" when querying -