i got a undefined index error when file upload in php

前端 未结 4 686
无人共我
无人共我 2021-01-25 22:03

i searched again and again but could not find the right answer. here is the situation. i got more than one forms in the same php file and below shows the code.

when i ec

4条回答
  •  独厮守ぢ
    2021-01-25 22:18

    Try looking at the entire array with this:

    echo "
    ".print_r($_FILES,true)."
    ";

    Then use this manual page to let you know what the error numbers mean. That will probably give you a good idea of what is going on.

    PHP File Upload Error Codes

提交回复
热议问题