Hello everyone,
I followed a simple tutorial online for using PHP to create a form on a page to allow me to upload multiple files to my website. However the problem i am facing is that it doesn't seem to upload anything greater than approx 1 meg... When I choose a big jpg (like the 5 meg one I tested with) it would go through the whole process and take a while as if it really was uploading... but then when looking at the contents of the destination folder it just wasn't there... i don't know why happened to it. I thought that adding this would fix the problem:
print "<INPUT TYPE='hidden' name='MAX_FILE_SIZE' value='10000000'>";
So that would limit my file size to 10 megs which is fine for what I need it for. But same problem in the end...
Anyways here is the php file:
Here is the download directory:
Any help here would be greatly appreciated. Please feel free to test it out and take a look at the php code and see if you can determine the problem and offer a solution...
I followed a simple tutorial online for using PHP to create a form on a page to allow me to upload multiple files to my website. However the problem i am facing is that it doesn't seem to upload anything greater than approx 1 meg... When I choose a big jpg (like the 5 meg one I tested with) it would go through the whole process and take a while as if it really was uploading... but then when looking at the contents of the destination folder it just wasn't there... i don't know why happened to it. I thought that adding this would fix the problem:
print "<INPUT TYPE='hidden' name='MAX_FILE_SIZE' value='10000000'>";
So that would limit my file size to 10 megs which is fine for what I need it for. But same problem in the end...
Anyways here is the php file:
Here is the download directory:
Any help here would be greatly appreciated. Please feel free to test it out and take a look at the php code and see if you can determine the problem and offer a solution...