Accessing variables of a dynamic form
问题 I am creating a form with cfloop and need to access each variable individually when submitting the form. I need to use the selected entries of the form in a loop that will add my selections to a database. This is my form: <form method="post"> <input type="hidden" name="isPost" value="1"> ... <cfoutput> <cfloop query="client_admin_surveys"> <input type="text" size="35" name="surveyID" id="surveyID" value="#id#"> <input type="text" size="35" name="surveyName" id="surveyName" value="#name#">