C
Casey
Hi,
I have a an html form that I am using as an order
form. I wanted to have for example one field show the sum
of the values of two other field entries. Right now all
of my fields are text fields, and I do not know if they
will be able to generate numerical values. Also, all of
the fields have the same name (T1) as you can see below.
Below shows on the top the field that I want to have
hold the sum, while underneath it are the three fields
that hold the digits that I want to add together to create
the sum. The other fields are very similar, and as I
mentioned, they are all named T1. If I have to change
that, please let me know.
<input type="text" name="T1" size="8" tabindex="12"
style="text-align:right">
<input type="text" name="T1" size="10" tabindex="9"
style="text-align:center">
<input type="text" name="T1" size="10" tabindex="10"
style="text-align:center">
<input type="text" name="T1" size="10" tabindex="10"
style="text-align:center">
If anyone could advise me on how to start to generate
calculations per this situation I would appreciate it.
Thanks
I have a an html form that I am using as an order
form. I wanted to have for example one field show the sum
of the values of two other field entries. Right now all
of my fields are text fields, and I do not know if they
will be able to generate numerical values. Also, all of
the fields have the same name (T1) as you can see below.
Below shows on the top the field that I want to have
hold the sum, while underneath it are the three fields
that hold the digits that I want to add together to create
the sum. The other fields are very similar, and as I
mentioned, they are all named T1. If I have to change
that, please let me know.
<input type="text" name="T1" size="8" tabindex="12"
style="text-align:right">
<input type="text" name="T1" size="10" tabindex="9"
style="text-align:center">
<input type="text" name="T1" size="10" tabindex="10"
style="text-align:center">
<input type="text" name="T1" size="10" tabindex="10"
style="text-align:center">
If anyone could advise me on how to start to generate
calculations per this situation I would appreciate it.
Thanks