Both of these scenarios are best handled through adding Custom Questions and passing them as question & answer pairs.
Check the following example: https://www.clickandpledge.com/Platf...s/example/001/
The custom questions: Your employer & Your occupation are similar to what you wish to do. See the code below:
HTML Code:
<tr> <td width="37%">Your Employer?</td> <td width="63%"> <input name="FieldName1" type="hidden" maxlength="20" size="40" value="Employer"/> <input name="FieldValue1" type="text" maxlength="500" size="20" /> </td> </tr> <tr> <td>Your Occupation?</td> <td> <input name="FieldName2" type="hidden" maxlength="20" size="40" value="Occupation"/> <input name="FieldValue2" type="text" maxlength="50" size="20" /> </td> </tr>
Since the question will be asked in the form as a visible text, the FieldName should be a hidden text with the question passed as the value of the FieldName as shown above.
I hope that makes sense. If not please reply to this and I can give you additional examples.
Leave a comment: