My problem is the company I work for has forms written in old C all over the place, only problem is, that the returned forms come out like this
First name = John
Last name = Bob
the problem exist that they want the forms to look like this when they come back
John
Bob
OR like this on one line
John Bob
OR even like this would work
Name = John Bob (exception here is that, basically takeing 2 text fields and merging them into 1 text field)
so that on a form that is written such as so:
First Name = ____________
Last Name = ____________
when the above form is returned it will show liek this
Name = John bob
Is this possible to do this with javascript? Or am i looking at another language entirely, if so which one, or is it not possible at all.
Basically they want to be able to copy and paste the returned information into word documents or whatever with just one operation, that way they dont transfer everything over then have to go back and delete all teh unwanted info like first name = and last name =, hopefully whoever reads this understand what i am talkign about. Also one last tidbit of info is that the website where the forms are to be located are on an UNIX Platform. Thanks in advance for any help recieved.
First name = John
Last name = Bob
the problem exist that they want the forms to look like this when they come back
John
Bob
OR like this on one line
John Bob
OR even like this would work
Name = John Bob (exception here is that, basically takeing 2 text fields and merging them into 1 text field)
so that on a form that is written such as so:
First Name = ____________
Last Name = ____________
when the above form is returned it will show liek this
Name = John bob
Is this possible to do this with javascript? Or am i looking at another language entirely, if so which one, or is it not possible at all.
Basically they want to be able to copy and paste the returned information into word documents or whatever with just one operation, that way they dont transfer everything over then have to go back and delete all teh unwanted info like first name = and last name =, hopefully whoever reads this understand what i am talkign about. Also one last tidbit of info is that the website where the forms are to be located are on an UNIX Platform. Thanks in advance for any help recieved.