I have a table with a selectable number of lines using MM_jumpMenu. The problem is that if a user enters data into the table then adds another line, all data is lost in the refresh.
If it is possible remedy this or another option will be greatly appreciated.
Thanks
THE SELECT BUTTON
<? for($i=1;$i<=50;$i++) { if($_GET["Line"] == $i) { $sel = "selected"; } else { $sel = ""; } ?> ?Line=<?=$i;?>" <?=$sel;?>><?=$i;?> <? } ?>THE TABLE