I have placed the following code within onLoad event of a Form App:
echo “<input type=“hidden” id=“chosen” value=”">";
In onValidate, I’m trying to access this field with $x = $_POST[“chosen”]; but it keeps saying “undefined index: chosen”
I do not want to post to a different (blank) form, neither do I want to create the entire Form App as a blank form. I want the hidden data to go along with all regular fields on the form by POST to the onValidate event.
Is this possible some other way?