Is it possible to enter more than 512 characters in <textarea>? Every time when I enter more than 512 and submit a form it shows me an error. Please, help to find a solution
The problem is with the form handler and not the textarea.
By "form handler" I mean the program that processes the stuff sent by the form when it is submitted. You can find its URL by looking at your form's action attribute (<form action="...">). Form handlers are typically files that end in .asp, .jsp, .pl, .cgi, .php etc.
Some bit of code within the form handler is not allowing the input from the textarea to be over a certain number (512) of characters.
To edit your form handler you have to be familiar with a computer language such as Perl or PHP, otherwise you need to have somebody knowledgable do it for you. Judging from your apparent situation, you may not even have access/permission to change this file. Check with your server's administrator.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.