name attribute of a field. Most HTML inputs work exactly as you expect, but some types (checkbox groups and multiple inputs) have special considerations.
Use this reference to pick field names and understand what shows up in your submission data.
Text, email, number, and textarea
Text, email, number, and textarea
Radio buttons
Radio buttons
Checkboxes
Checkboxes
Select menus
Select menus
File inputs
File inputs
file or image key based on the MIME type.Multiple values with the same name
When usingmultipart/form-data, repeated keys collapse to the last value. If you need arrays (for example, multi-select or checkbox groups), submit as JSON instead.
JSON submissions are best when you need structured data or arrays. Browser form posts are best for simple, classic form flows.