Hi There,
Hope everyone is doing well, I'm busy with developing a page but would like the user to be able to add rows Dynamically with PHP. This row will contain columns Example:
<tr>
<td rowspan="2" align="center" valign="top">Value A</td>
<td height="24" align="center" valign="top">Value B</td>
<td rowspan="2" align="center" valign="top">Value C</td>
<td rowspan="2" align="center" valign="top">Value D</td>
<td rowspan="2" align="center" valign="top">Value E</td>
<td rowspan="2" align="center" valign="top">Value F</td>
</tr>
But I want the columns to be added dynamically with the valid postable names to get data that was added by user. I hope this is possible
Regards