javascript - Post array max size issue -
i know question asked before isn't answered wish. have big form , , put lot of information in it's hidden javascript , retrieve sent data php. max size of post array size not enough. what's way increase inside code , not in server's settings? , if isn't way of communication between javascript , php , should ???
<form action="" method="post" name="themeform1"> <? foreach($this->css1->css $key=> $value){ ?> <input max="999999" type="hidden" name="<? echo $key."-"; ?>direction"/> <input max="999999" type="hidden" name="<? echo $key."-"; ?>width"/> <input max="999999" type="hidden" name="<? echo $key."-"; ?>height"/> <input max="999999" type="hidden" name="<? echo $key."-"; ?>opacity"/> <input max="999999" type="hidden" name="<? echo $key."-"; ?>background-color"/> <input max="999999" type="hidden" name="<? echo $key."-"; ?>padding"/> <input max="999999" type="hidden" name="<? echo $key."-"; ?>margin"/> <input max="999999" type="hidden" name="<? echo $key."-"; ?>float"/> <input max="999999" type="hidden" name="<? echo $key."-"; ?>text-align"/> <input max="999999" type="hidden" name="<? echo $key."-"; ?>text-shadow"/> <input max="999999" type="hidden" name="<? echo $key."-"; ?>box-shadow"/> <input max="999999" type="hidden" name="<? echo $key."-"; ?>font-size"/> <input max="999999" type="hidden" name="<? echo $key."-"; ?>font-color"/> <input max="999999" type="hidden" name="<? echo $key."-"; ?>border-width"/> <input max="999999" type="hidden" name="<? echo $key."-"; ?>border-color"/> <input max="999999" type="hidden" name="<? echo $key."-"; ?>border-radius"/> <input max="999999" type="hidden" name="<? echo $key."-"; ?>border-style"/> <? } ?> <input type="submit" name="save" value="save"/> </form>
thanks.
what's way increase inside code , not in server's settings?
both webserver and php apply size limit - response browser must smaller both php code. how set limit in php documented in manual , in the many questions mentioned.
how change webserver settings depends on webserver - can't incluence php code , didn't tell webserver is.
Comments
Post a Comment