Hi!
i have a form which is which has an array field
php code***********
while($row = mysql_fetch_object(...){
$tbl .= '<input name="qty['.$x.']" type="text" size="4" maxlength="4"/>';
...
}
when i try to do something like this, it doesnt like it
javascript code ***************
for(i=0;i<total_rows; i++){
...
frm_name.qty.value
...
}
I would like to validate it on submit to check at least one of then has a value and and that the values entered are numeric...thanks