Can anyone explain why when I have a form that has an input with a type of file and I submit the form why doesn't the variable get put in $HTTP_POST_VARS?
To verify it wasn' there i did a loop through HTTP_POST_VARS printing out the key and data type of the element and I'm not seeing my file. However, I can get to it with $<form_variable_name>, in this case $the_file. I have some code that can handle forms generically and it passes the data to the proper function for processing but my file never shows up making my code not so generic anymore.
--Tony