This is a discussion on max file upload size? within the PHP General forums, part of the PHP Programming Forums category; Hello, Does anyone know where I can read set the maximum file upload size for my POST request? When I ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Hello, Does anyone know where I can read set the maximum file upload
size for my POST request? When I upload files larger than 3 megs, the variable $_FILES['myfile']['tmp_name'] is empty and I think it might be because I exceeded the max file size. Thanks, - Dave |
|
|||
|
On Mon, 10 May 2004 18:22:52 -0700, D. Alvarado wrote:
> Hello, Does anyone know where I can read set the maximum file upload > size for my POST request? When I upload files larger than 3 megs, the > variable > > $_FILES['myfile']['tmp_name'] > > is empty and I think it might be because I exceeded the max file size. > > Thanks, - Dave This is how you should be able to get the ini setting: print ini_get('upload_max_filesize'); It's set in the php.ini file. DrTebi |