Can anyone please tell me what's wrong with this statement?
echo ("<input name=\"$outstandqty[$arrayindex]\" type=hidden value=$col6>");
I'm trying to use it as a means of dynamically creating a hidden field name which I can then validate against. The problem is that the generated html does not comes back with <input name ="".....
Another line in my code is very similar and works fine: -
echo ("<td><input name=orderqty[$arrayindex] type=text size=11>\n</td>");
Thanks
Chris