I am working on some code i wrote to manage podcasts for a website. On the back end i put together a form that uploads the podcast and stores some information about it in a mysql database. It works fine if i upload small mp3's i have tried with a 5 meg file, boom it works just fine. when i try to upload a 15 meg file it does nothing. I have upped the maximium file size in my php.ini to 30 meg so that shouldnt be causing this. While debugging i added var_dump($_POST); to the submit code and it comes back with an empty array with the large file, but comes back as expected with the smaller file. Im guessing im missing something in php.ini that is dropping this. any ideas?