[eluser]EugeneS[/eluser]
Hello,
any ideas what maight be wrong or on what it is depend ?
so in the form i add dynamically input elements with the name FormElement[] so this come to php script as an array, BUT on my local pc if I've added 10 form element i receive 10 elements in $_POST array but on the server this array limited to 6 elements ... do not understand on what this trouble depend ?
for example:
Code:
<form action="blabla" method="post">
<input name="FormElement[]" value="1">
<input name="FormElement[]" value="2">
<input name="FormElement[]" value="3">
<input name="FormElement[]" value="4">
<input name="FormElement[]" value="5">
<input name="FormElement[]" value="6">
<input name="FormElement[]" value="7">
<input name="FormElement[]" value="8">
<input name="FormElement[]" value="9">
</form>
in php
and i see only 6 values instead of 9.
I see from 4 to 9, so first 3 are absent :\ what the php setting or anything other ?
any ideas ?