Yes, I understand about the control based on the max file size under php.ini.
Imagine user try to upload 2 MB to the system, which my apps only allow 500kb to be uploaded. (Correct me if I am wrong. ) To what I understand, PHP will upload the entire file to server as temp. THEN, only able to allow me to get the file information, right?
If YES, then I am seeking a way which allow me to check before the entire file being uploaded to my server, by using PHP, or other cgi/java? In order for me to save the resources and reduce the time for invalid upload checking.
Thank!