Forum Moderators: coopster
$mothly_payment= $financing_price * $monthly_interest_rate / (1 - pow(V, $month_term));
Parse error: parse error, unexpected T_VARIABLE in c:\phpWeb\auto_calculator.php on line 102
The line I posted earlier is line 102.
Thanks in advance.
Now what is pow, I am not very good at debugging but it doesnt look like that is much of anything.
This parse error usually means you are missing a terminating semicolon or closing brace, etc. somewhere *higher-up* in your code.
[edited by: jatar_k at 3:25 am (utc) on Aug. 27, 2004] [edit reason] fixed link [/edit]
$mothly_payment= $financing_price * $monthly_interest_rate / (1 - pow($V, $month_term));
BTW you probably want $mothly_payment to be $monthly_payment
My bet is that V is supposed to be a variable - $V - and that there is a missing semi somewhere above it.
WBF