Hello. I have a web page with a form that asks the user for their name and few other inputs. I'd like to send the inputs to another webpage that creates a letter.
A simplified example is a form that asks for the:
- user's name (<uname>),
- their govenor's name (<gname>)
- and a question they want to ask their govenor (<ques>).
They hit enter and they go to another page where they see a letter formatted like:
Dear <gname>:
My Name is <uname>. Please answer the question below. Thank you.
<ques>
can the form processing be done using javascript? Thanks you.
A simplified example is a form that asks for the:
- user's name (<uname>),
- their govenor's name (<gname>)
- and a question they want to ask their govenor (<ques>).
They hit enter and they go to another page where they see a letter formatted like:
Dear <gname>:
My Name is <uname>. Please answer the question below. Thank you.
<ques>
can the form processing be done using javascript? Thanks you.