SvenBlackwood
Programmer
Here is my problem I need to send a form that takes values from field a and field b, but then when the form is sent, sends values a+b in another field, along with a bunch of fields.
i.e.
<input type="text" name="a"></input>
<input type="text" name="b"></input>
...
<input type="text" name="ab"></input>
<input type="text" name="ac"></input>
...
<input type="hidden" name="c" value="javascript:a + b"></input>
or something like that. I tried adding an onchange, but not sure how to send the value to be updated in the field "c"
any help will be highly appreciated.
i.e.
<input type="text" name="a"></input>
<input type="text" name="b"></input>
...
<input type="text" name="ab"></input>
<input type="text" name="ac"></input>
...
<input type="hidden" name="c" value="javascript:a + b"></input>
or something like that. I tried adding an onchange, but not sure how to send the value to be updated in the field "c"
any help will be highly appreciated.