How to send large data using POST method?

前端 未结 3 998
伪装坚强ぢ
伪装坚强ぢ 2020-12-20 19:33

How do you send large amount of data using POST method?

I heard that post method default is 8M now what if you exceed that size? How would you send a plain text to t

3条回答
  •  离开以前
    2020-12-20 20:21

    If you have access to the ini.php change the value

    post_max_size
    

    to

    20M
    

    from 8M you will be able to achieve what you want

提交回复
热议问题