|
DaWei:
I have PL/SQL code that generates a HTML form. The form consists of N statements followed by five radio buttons. There is an input button that executes a javascript function during an onClick event.
The javascript function's job is to process all of the input box selections on take each of their values and add them to a string of values... which, in turn, is passed back to the PL/SQL procedure for further processing.
Agent47:
The procedure is generic, to the effect of me not knowing the number of entries. I know there will be five radio buttons per entry, but I'm not sure if I can go this route if the number of entries is unknown. Is this still possible?
|