Hi!
I have the same problem, but I solved it.
When you submit an array u use
<INPUT TYPE="text" NAME="something[]">
When u want this to be put in another frorm use hidden type and write this
for ($n=0;$n>length of this array;$n++) {
echo <INPUT TYPE=\"hidden\" NAME=\"something[]" VALUE=\"something[$n]\">
}
When u submit this again u get all this data in array and if you want send to another one, do the same.