More than 1 hidden field in Forms

Hi, I have successfully used a hidden field to pass a fixed value in that field when the contact submits a form.
My problem is that I want to update 2 hidden fields, in that case the solution of adding at the end of the form URL the name of the hidden field and the fixed value is not working for me or at least I don’t know how to write both fields and their corresponding fixed values in the URL of the form, I have tried to write one after another with and without “/?”, etc., but the system brings the value OK for the last field added in the URL but for the first one it brings all the string that follows "? hiddenfieldname = "
Does anyone knows how to do it?

Thanks
Van.

Did you get this fixed? Not sure I understand your problem, but just in case:
If you need to add more parameters to an URL it works with the first one set using “?” and the following ones is set using “&”…
So a URL could look like this:
somewebsiterighthere.com/myform/?hiddenfield1=value1&?hiddenfield2=value2

Yes! 2 day ago I’ve tried with de “&” (I saw that logic in an example for autopopulate contact’s fields like name, email, etc and I looked to me that that could work for my issue) and it worked!!
Thank you very much for your reply!!

1 Like