0

let me tell you that I am trying to submit a form with 600 input using codeigniter 4. in the controller when taking the input array it only takes 98 inputs, for the others it does not show the value I have increased the input values ​​on the server but everything remains the same. I would be grateful if you could guide me. Thanks a lot.

enter image description here

1 Answers1

2

You can change php.ini file setting. For example, to set the maximum number of input variables to 600.

max_input_vars = 600

Kanji Taviya
  • 119
  • 7