I found this formula written in CGI and I would very much like to convert this into PHP.
$affordability = $payment / ($monthly_interest / (1 - (1 + $monthly_interest) ** ($minus_terms))) ;
Unfortunately, PHP does not recognize the ** symbol, and I am wondering if someone can give me some shed of lights of how to convert this into PHP.