I have a limit in the php.ini file for uploading files...
What I'm wondering, is there a way to get the filesize if it is over the max filesize that can be uploaded....
I've tried $_FILES["file"]["size"] but I don't even get a null return...
Any ideas?
Basically I have to figure out if the file is 0 bytes or over the max allowed so I can return an error code...
thanks....