I have created a PHP Method in a form to test certain fields on the form to enable/disble some buttons. Problem is that I cannot access the field values by {field}. The values are always empty. I can however make a button visible/unvisible in the method. How do I get access to the formfields? I don’t want to pass every field in the procedure parameter list.
I tried to set a field to a global using the save variable, but the fieldname assigned cannot be used in the method because it generates an error ‘global variable … not found’.
I can however set a global and use that in the method. But then I have to create a global variable for every field and manually assign the formvalue to it??? I hope not…