doupo2157 2017-07-12 21:58
浏览 113
已采纳

HTML表单文件上传不起作用,$ _POST不转发数据

Maybe it is just too early here, but can't figure out the problem... I have made several forms already, but this time for a reason I can't forward the data of my file input.

Here is my index.php (where the form is):

<form action="confirm.php" method="post" enctype="multipart/form-data">
<input type="file" name="file1">
<input type="submit" name="order">
</form>

Here is my confirm.php:

<?php
if (isset($_POST['order'])) {

    $file       = $_POST['file1'];

    echo $file;

}
?>

And I get the following error message:

Notice: Undefined index: file1 in /Applications/MAMP/htdocs/.../confirm.php on line 4

I seriously don't understand what is the problem. This is a rock easy form and I think it is correct. Can you please help me with this huge issue? :DD Btw. the form proceeds all the other input data except the file.

Thanks, Matthew

  • 写回答

3条回答 默认 最新

  • dqtok88424 2017-07-12 22:03
    关注

    Since your input type is file so you can not access by $_POST

    `type="file"` // Not Accessible through `$_POST` 
    

    Php is providing separate http group $_FILES for getting the value of input which type should be file like this type="file"

    So you can you get the input value by $_FILES

    if(isset($_POST['order'])){
       $Input_File = $_FILES['file1'];
       $Input_File_Name = $Input_File['name'];
       $Input_File_type = $Input_File['type'];
       $Input_File_tmp_name = $Input_File['tmp_name'];
       $Input_File_size = $Input_File['size'];
    
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部