On my form I have a text input box.
There are also radio buttons.
I need to take the value of the input box and the value of the selected
radio button and concatenate them with a plus sign in between.
So if the input box's value is: "Hello"
and the input box's name is name=step1
and the radio button's value is: "David"
I want the output to be:
step1=Hello+Dav id
with the plus sign between them.
How can I do this?
Thanks!
There are also radio buttons.
I need to take the value of the input box and the value of the selected
radio button and concatenate them with a plus sign in between.
So if the input box's value is: "Hello"
and the input box's name is name=step1
and the radio button's value is: "David"
I want the output to be:
step1=Hello+Dav id
with the plus sign between them.
How can I do this?
Thanks!
Comment