Guys, I'm stuck.
I have a form that loops over records in my DB and puts a text box at the end of the row for each record. There are numerous job codes in the DB and the text box is to input hours for each job. I've given the input box the name corresponding to the primary key value for the job code it represents.
When I go to output the data is where I get stuck, since I don't know what the field was named.
This is where you all come in. How can I output variables that were sent to the output page as variable field names?
To clarify a little more, the data comes into the output page like so:
So, as you can see, I'm never going to know what my field names are in order to display them. Any ideas?
Thanks a million, all Kevin
slanek@ssd.fsi.com
I have a form that loops over records in my DB and puts a text box at the end of the row for each record. There are numerous job codes in the DB and the text box is to input hours for each job. I've given the input box the name corresponding to the primary key value for the job code it represents.
Code:
<INPUT TYPE="text" NAME="#task_codes_pkey#" MAXLENGTH="5" SIZE="4">
This is where you all come in. How can I output variables that were sent to the output page as variable field names?
To clarify a little more, the data comes into the output page like so:
Code:
Parameters
Form Fields:
839=132
840=321
841=456
842=654
So, as you can see, I'm never going to know what my field names are in order to display them. Any ideas?
Thanks a million, all Kevin
slanek@ssd.fsi.com