I have been using php for a long time, but only recently started getting used to register_globals being off.
So I now pull everything from form data from the HTTP_POST_VARS[] array.
For instance:
$txtState = trim($HTTP_POST_VARS["txtState"]);
I have not been able to figure out how to pull an array out of there yet though.
I have multiple one dimensional arrays that are submitted via a post form that I need to process.
Any hints would be greatly appreciated.