hi there
to use this form objects you must set their id's without [] or any special simbol:
<input type="text" name="formname[]" id="formname<?=$i?>_" size="21" maxlength="20">
at javascript source you can use:
var js_obj = document.getElementById("formname<?=$i?>");
var obj_value = js_obj.value;
// or formname0, formanem1_ and so on..
note that '_' at the end of id name.. I used to have problems in moozzilla with numbers as last character in form's name's. so, use some diferent simbol or letter
and the $i in form's name is optional, will make no difference to js
hope that helps you,
have fun
[]
icaro