I have a link //pages/form.htm?num=1 that opens a form page. I want to read the passed variable num=1 into the form textarea to read "You have requested document 1" where the value 1 comes from the URL passed value in num. I will only be passing one variable at this time. So far my form looks like this:
<td colspan='3'><textarea name='Comments' cols='45' rows='10'>You have requested document </textarea></td>
How do I get the value 1 from the URL into the textarea?
Thanks in advance for your response.
<td colspan='3'><textarea name='Comments' cols='45' rows='10'>You have requested document </textarea></td>
How do I get the value 1 from the URL into the textarea?
Thanks in advance for your response.