OK. I have a form that has values to be inserted to a database [duh! 😉 jk] but here is my dilemma.
<tr>
<td width="33%"><input name="debtor" type="text" id="debtor" value="<? echo $debtor; ?>"></td>
<td width="33%"> <input name="value" type="text" id="childname" value="<? echo $value; ?>"></td>
<td width="33%"><input name="ownership" type="text" id="childname" value="<? echo $ownership; ?>"></td>
</tr>
Now, I have 4 or 5 of these, but they all will have the same input NAMES. I need to find a way to cycle through each of these rows and input the data based on whether or not the user has filled out the values. Is there any way to do this? Thanks all