Hi all, I have the following code:
<tr>
<td width="60%"><dl>
<dt>Full Name</dt>
<dd>
<input name="fullname[]" type="text" class="txt w90" id="fullname[]" value="<?php echo $value; ?>" />
</dd>
</dl></td>
<td width="30%"><dl>
<dt>Job Title</dt>
<dd>
<input name="job_title[]" type="text" class="txt w90" id="job_title[]" value="<?php echo $value2; ?>" />
</dd>
</dl></td></tr>
Let assume that I have several rows of the above code. How do I iterate and get the value for arrays $_POST['fullname'] and $_POST['job_title']?