I am developing a tool where lots of data (>1MB of data) with lots of lines can be copied and pasted into a textarea. When I submit the form it just shows a blank screen. Nothing happens. Is there a way to process large data submitted by a form with PHP like in chunks and pieces? What are the best practices do handle large amount of data in a web form?
Thanks for you help!!
First off you need to raise the default amount that PHP can handle from 8MB to whatever you think you will need, secondly how to handle that amount of data directly depends on what you actually want to do with it, you would obviously need to clean up malicious code.