If you want to see how your array looks stubmitting it, comment out EVERYTHING inside the $_POST statement dealing with your input, and place this right after the if:
PHP Code:
echo '<pre>';
print_r($_POST);
echo '</pre>';
To globalize() an array, you HAVE to omit the datatype. In other words, if your array was called "a" then your first globalize() example is correct.
HTH