FormData empty if included file is too large
Summary The issue at hand is that when submitting a form using JavaScript and the FormData object, if the included file exceeds the maximum allowed size, the $_POST array on the server-side is empty. This behavior is not observed when submitting the form traditionally. The goal is to retrieve the posted data even if the … Read more