Maybe I am not explaining myself clearly. I'll attempt one more time.
I want to pull the calculation's in from a table.
$fld[] is setup as an array containing numbers for the calculations.
I would like to pull the calculations from a table. What is stored in the field in a table.
Examples: ($fld[42]/24)
($fld[45]/$fld[57])/$fld[50]
when using the eval command I get:
677126/24
(10/5)/2
I am not manually setting up the calculations as a string the system is seeing them that way because they come from the table.
Does anyone know of anyway to get this to work?