Link to home
Start Free TrialLog in
Avatar of Rags02
Rags02

asked on

Can I increase the max vars of my POST array without editing the php.ini file?

I have a HTML form with over 200 inputs.  It appears the max var for my $_POST array is set at 200.  Is there a way to temporarily adjust the max vars without editing php.ini?  I am working on a shared server.
ASKER CERTIFIED SOLUTION
Avatar of DarkFish
DarkFish

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Rags02
Rags02

ASKER

@DarkFish:  thanks.  I was hoping there was a function that would temporarily call / manipulate the Suhosin settings.  But it's not looking like there is.  Which makes sense I guess...  Thanks for clarifying.
Can you break your form into parts so fewer post vars get submitted at one time? With one form that I created, I have a form with all the registration information for our website and after you click on submit, you get the payment form. Maybe you could do something similar with your form?