File upload issue
- by Varun
I am working on a PHP based, ticket management system. While creating a ticket, one can upload an attachment.
I want to put a limit (say 10 MB) per file upload.
To implement this I plan the following-
1. In php.ini set
post_max_size = 10M
2.In PHP script which receives the POST-
Since the file is larger than post_max_size, $_FILES[] will be…