ok, If I use the HIDDEN method.....
How can I pass the array so I only have to define it once like:
<input type=hidden name='info[test0]' value='yeah'>
<input type=hidden name='info[test1]' value='wow'>
Then on the receiving page I only have to pass $info instead of definig each hidden field again; AND specify more variables for the info array?
so on the next page it would look like:
<input type=hidden name='info[]' value='$info'>
<input type=hidden name='info[test3]' values='suck'>
instead of:
<input type=hidden name='info[test0]' value='$info[test0]'>
<input type=hidden name='info[test1]' value='$info[test1]'>
<input type=hidden name='info[test3]' values='suck'>
where I'm doing my work all over again?
Make sense?
Is there and easy way of doing this so on each page I only have to pass the values $info instead of each variable?