Geoff said:
What do *you* mean by an "array of values"? Example, please.
The first page will have
array1[0] to array1[7] values
and the second array2[0] to array2[7] values etc etc.
and I want to have all these sets available on the last page...
Store the array in a hidden form element.
onsubmit='this.form.hiddenFieldName.value=array1.join("*")'
// use a separator that will not appear in the array entries (*)
When you submit the form to page 2, the array values will be available
as a string as part of the "get" query, or as part of the "post" info.
What server-side language are you using?
You can use javascript if you want by parsing the query string.
if(location.search){
vals= unescape((location.search.substring(1).replace(/\+/g,""))).split("&");
for(i=0;i<vals.length;i++){
vals
=vals.split("=")
window[vals[0]]=vals[1]
}
Now the array values are available as the global variable <hiddenFieldName>
Mick