-PHP- Warning: Division by zero in htdocs/drift/whiteboard/ppw_math.php on line 6?

Mitch

New member
Why is it saying i'm dividing by zero???

Warning: Division by zero in htdocs/drift/whiteboard/ppw_math.php on line 64


$global = 8.35;
$admin = $row["ppw_true_debt"] * $row["client_percent"];

$pt1 = ($attorney_fee + $global) * $row["client_program_length"];
$pt2 = ($row["client_percent"] + $repayment) * $row["ppw_true_debt"];

$payment = ($pt2 + $pt1) / $row["client_program_length"];

$total_payment = round($payment,2);


fyi, "all of these variables DO have values assigned to them before the equation.

it still does the math but shows this error....

HELP
 
Back
Top