Many thanks to Bricker and MJ ...I read over the link info you posted Bricker and it looked well annotated ...but MJs looked ever more readable...and Hey Presto! I understood it!
For those like myself who can be a bit slow in working out certain things, I post the following demo that made me feel confident that I had what I was looking for, viz a script capable of reading multiple field values and then displaying them in a second Form (although I may well eventually make them hidden rather than text). I thank you all for your time and effort and hope my simplistic interpretation below will help a few others even more.
The Posting Form saved as 1.htm with another 4 fields added:
<html>
<body>
<form name=myForm method="GET" action="2.htm">
<input type=text name=foo size="20">
<input type=text name=goo size="20">
<input type=text name=hoo size="20">
<input type=text name=joo size="20">
<input type=text name=koo size="20">
<input type=submit>
</form>
</body>
</html>
The receiving Form (MJ's script from above) saved as 2.htm with the following changes:
1. Matching 'target' fields in the page 2.htm
<FORM name="MyForm">
<INPUT name="foo"><br>
<INPUT name="goo"><br>
<INPUT name="hoo">
<INPUT name="joo"><br>
<INPUT name="koo"><br>
</FORM>
....
2. Matching Javascript near the bottom of the script to extract matching data from the array...changes made in the middle and at the end of each line:
document.forms.MyForm.foo.value = GETDATA["foo"];
document.forms.MyForm.goo.value = GETDATA["goo"];
document.forms.MyForm.hoo.value = GETDATA["hoo"];
document.forms.MyForm.joo.value = GETDATA["joo"];
document.forms.MyForm.koo.value = GETDATA["koo"];
Wishing to hide a field would involve editing to:
<input type=hidden name=foo size="20">
This is probably a very crude editing ..but it works...many thanks to all
