With the following simple code, I get only <none> as result instead of ((high() + low())/2 + 1).
How can I use GlobalVariables in functions, which I use with efsInternal-call?
PHP Code:
var hdl2;
function main()
{
hdl2 = (high() + low()) /2;
return efsInternal("test");
}
function test()
{
return (hdl2 + 1);
}
Comment