have you tried setting it as a global???
global $array;
you could pass the variable to another form using this.....
example of this would be
first page
echo "<a href='test.php3?array=$array'
the next page would have the global $array;
or you could name or call the var in your form....
echo "</td></tr><tr><td width=20% align='right' bgcolor='#eeeeee'>";
echo "$TEXT Array Input $ENDTEXT";
echo "</td><td width=80% align='left' bgcolor='#ffffff'>$TEXT<input type=text name=array size=20>$ENDTEXT";
$query ="insert into database ( array) values (";
$query .= "'".$GLOBALS["array"]."',";
$query .= ")";
something kina like this...hope this helps.....
"think for yourself question authority"