Hi guys...im very happy to interact with you all...I have a problem with my code..i would like to call the javascript value into php.. can any one help me plz....
:- this is my function
var cell3 = row.insertCell(2);
var element2 = document.createElement("input");
element2.type = "text";
element2.name="name"+rowCount;
element2.value="name"+rowCount;
cell3.appendChild(element2);
..............................................................
:- i called like this
$child=$_POST['element3.name'];
...............................................................
In the above code....i want call element2.name...this is used to assign a name to a textbox....So how can i cal this into php.....help me plz......