I have a math problem where I am trying to calculate the total combination of values in a set... when I try and run my calculation it just returns INF instead of a number...
$tally = 1;
foreach ($output as $key => $er) {
$tally = $tally *(ord(strtolower($er)) - 96);
}
echo $tally;