PHP - empty $_POST and $_FILES - when uploading larger files

前端 未结 5 1575
深忆病人
深忆病人 2020-11-29 04:18

I have a following problem, I have HTML form that uploads a file with some extra information. But it allows to upload files that only less then 10MB. But when user tries to

5条回答
  •  借酒劲吻你
    2020-11-29 04:23

    i can mention that if you process form like below

    if(isset($_POST['submit'])
    

    if post_max_size is lower than posted data then the $_POST['submit'] will be empty

提交回复
热议问题