PHPNovember 6, 2006 6:43 am
Setting Maximum File Upload Size on PHP
You can simply set the maximum file uploads size from php.ini file
Try to find rows below :
post_max_size = 100M
upload_max_filesize = 100M
Change the value according to your needs and restart your web server to apply changes.
In your web page source, don’t forget to add this attribute in your form tag :
enctype=”multipart/form-data”
