Hi,
im sort of trying to insert an array value as an argument, illustrated in the following code:
for($j=0;$j<count($number);$j++) {
<input type='text'
size='1'
name='inputno'
id='inputno$j'
onchange='check_input(this.value, (i wanna get the value of $j here) )'>";
}
any idea?
thank you