Not sure if this is a bug or not. This code has worked for years:
if($den<>0)
{
{s1} = round(($num*{r1})/$den,.5);
}
else
{{s1}=0;}
echo "den is $den zero ", “
”;
Today I noticed it hangs the process with a spinning gear. I changed it to this and it works: It seems it does not like the table variable in the calculation. Is this new?
$rvar = {r1};
if($den<>0)
{
{s1} = round(($num*$rvar)/$den,.5);
}
else
{{s1}=0;}
echo "den is $den zero ", "</br>";