How i can upload big files using PHP ? I see that it will upload with no problems files around 2-3 MB , but when i try with a file around 40 MB, it will not upload it. I even tried this HTML extra code , but it will just not work ... <form enctype="multipart/form-data" action="amanage.php" method="POST"> <input type="hidden" name="MAX_FILE_SIZE" value="196000000" /> </form> I am running Apache on Windows XP ...
if you do not have access to your php.ini file, you could always try this: ini_set("upload_max_filesize", "40M");