ammm...I have this code
<table border="1" name="myTable" id="myTable">
<?php
$nRow = $_GET['rowLength'];
$nColumn = 7;
for($i=0;$i<$nRow;$i++){
echo "<TR>";
for($i=0;$i<$nColumn;$i++){
echo "<TD><INPUT TYPE='text' NAME='' VALUE=''/></TD>";
}
echo "</TR>";
}?>
</table>
now, I'm trying to pass js variable to php variable on the same page....
but I'm having this error: Undefined index: rowLength
...I'm using $_GET to get the variable rowLength from js...
...thank you in advance...