Hallo - at first thanks for this great tool.
Question: In which expression/variable can i get the result of the counting in read_data procedure?
i tried several like {var:read_data59.gruppe1.anzahl} but that doesnt work.
Question: In which expression/variable can i get the result of the counting in read_data procedure?
i tried several like {var:read_data59.gruppe1.anzahl} but that doesnt work.

just
{var:read_data59}
perfect - this works fine.
Another question: how can i calculate with this?
Eg left places: 170 - {var:read:data_59} results text and not the numerical value
Another question: how can i calculate with this?
Eg left places: 170 - {var:read:data_59} results text and not the numerical value
use the PHP syntax in a PHP action:
echo 170 - (int)$this->get("read_data59");
You need to login to be able to post a reply.