The problem is: I have a textarea with many thousands of characters. I cannot proccess it as a parameter, because the line will be too long. How can I avoid this?
Use method="POST", not "GET".
Keep in mind, though, that the browser has (undocumented) limits on the size of a textarea it will handle.
I had the same problem - and this solved it. I had overlooked this.