by prettyscripts on 2008-04-18 15:06:34
when submitting form values, make sure all id's in the form are unique.
this happened to one of my forms - the form value is not submitted. you get empty array. this is on firefox. but it works on IE (huh?) took me hours of investigation through 10k+ lines of php code.
assign id attribute to <form>. without this, you get empty data.
make sure all fields in the form have name and id attributes. without name attribute, the field value is not submitted. without the id attribute, you cannot manipulate the field in php xajax function.
make sure all values assigned to id attribute are unique!