I am doing a JavaScript
function to read a file that the user is uploading and sends to PHP
via POST
only content for insertion into the database.
I'm trying to send a array
with the contents of the file, each position is a line, the problem is that some files can be very large (600,000 lines) and the largest array
I can pass via POST
is 100 thousand lines.
I've already changed the php.ini
post_max_size
, max_input_vars
, memory_limit
but still can not.
Does anyone know how I can pass this array
with 600,000 positions by POST
without having to break it into parts?