File Uploader
I am making a file uploader, I have noticed my script will not upload the file when over a certain size, I have tried to use ini_set to set some settings to increase the maximum file size upload allowed, but I have read that because the ini_set will be within the same iteration of the upload script, and because it executes after the file upload it will not take effect in time.
Is there a solution around this? I intend my application to be distributed over the internet therefore it would be convenient to be as simple as possible.
Cheers

