I want to get data that user enter in the text field with name and id Name, which has a similar structure like below;
<form id="testform" name="testform" method="post" action="process.php">
<table class="style1">
<tr>
<td class="style2">Name</td>
<td id="Name" class="style2">
<input id="Name" name="Name" type="text">
</td>
</tr>
</table>
</form>
I want to store the data in a variable.
How can i make this possible?
Thanks in advance… :)
blasteralfred
Try this:
If you can remove the id=”Name” for the td (table cell) element, you can try the code given below and this will be faster compared to the previous version