I have table.
<tableid="mytable" >
<tr class='row'>
<td>Name</td>
<td><input type="textbox" name="txtName" /></td>
</tr>
</table>
I used jQuery to add new row
var a = $(".row").html();
$("#mytable > tbody:first").append("<tr class='row'>"+a+"</tr>");
This is code PHP
$_REQUEST['txtName'];
I can't get values textbox when create new rows. Please help me
txtName. And because of that it is not giving you result inPHP. Refer Galen's answer.