If your form sending much more POST request than the default size and you want to increase the size of POST then see the steps:-
Open the file php.ini
you can file the location of file from exicuting the PHP line below
<?php phpinfo(); ?>
Now open the file and edit this to the values as given below:-
post_max_size=20M
upload_max_filesize=20M
Now restart your server and it'll work
0 Comment(s)