How can I send the information from an array into another PHP script. It always just comes through with the value "Array"
If you have an array "$arr" and you write "echo $arr", "Array" is what the output will be. To get the array in raw output use "print_r($arr);". To output it with formatting use a loop, like with foreach.