I have one Multiselect box in html. I have to total 2500 Options in Selectbox I am try to post all option using html form but only the 1000 option will post i have already increase "post_max_size" ie. 25000M , "upload_max_filesize" ie.24998M and "memory_limit" ie. 25000M is their any limit for post options.
Html Code is mention as below.
<form action="" enctype="multipart/form-data" method="post">
<select name="companylist[]" style="width:300px;height:80px" multiple="multiple">
<?php
foreach($options as $key => $val){
?>
<option value="<?php echo $val;?>"><?php echo $val;?></option>
<?php
}
?>
</select>
</form>