Yes, the $_POST
has a maximum limit defined by the setting post_max_size
PHP, but this value is usually sufficient for textual information.
It would be interesting to check if Voce has no attributes name
repeated in the form that is sent, as this can cause the information of one field to replace that of another.
EDIT: Based on your comment that you are trying to send an array, Voce can do as follows:
<input name="nota[0]">
<input name="nota[1]">
<input name="nota[2]">
<input name="nota[3]">
You can access the notes in the array using $_POST['nota']
.
Post the client code that is performing the POST request.
– Renato Dinhani