Can anybody tell me why I get a warning message off the following code.
$htemp = "htmp$m"; //$m is increasing within a for loop
$$htemp = $$htemp + $$hother;
This is the error message I get.
Warning: Undefined variable: htemp
I only get on error message as it loops through the code.
The strange thing is the equation completes and gives the correct total but an error message is present. Any help would be appreciated.