Field name labeled -missing field name- after loading the HTML form in Forms To Go

Issue:

After loading a HTML form in Forms To Go, one or more fields says -missing field name- in the field list.


How to solve:

This means that it has a wrong form element, without the NAME attribute. Example:

Wrong:
<input type="text" size="12">

<textarea cols="20" rows="4></textarea>

<select size="1">

<input type="submit" value="SUBMIT">

Correct:

<input type="text" name="address" size="12">

<textarea name="comments" cols="20" rows="4"></textarea>

<select name="cartype" size="1">


<input type="submit" name="submit" value="SUBMIT">

All form fields must have a NAME attribute in order to process the form correctly from the script.
NOTE: Some HTML editors do not assign the NAME attribute to the SUBMIT and RESET buttons. The solution is to add the NAME attribute to these buttons in your HTML editor or configure Forms To Go to suppress display of these buttons here.