doupo2157 2017-07-13 05:58
浏览 112
已采纳

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-13 06: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条)

报告相同问题?

悬赏问题

  • ¥15 HFSS 中的 H 场图与 MATLAB 中绘制的 B1 场 部分对应不上
  • ¥15 如何在scanpy上做差异基因和通路富集?
  • ¥20 关于#硬件工程#的问题,请各位专家解答!
  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 報錯:Person is not mapped,如何解決?