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

java - nested exception is org.hibernate.exception.SQLGrammarException: could not extract ResultSet Hibernate+SpringMVC -

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

asp.net mvc - breakpoint on javascript in CSHTML? -