$ _FILES不工作?

Rya*_*fer 6 html php

我通过这种方式在表单内部(使用提交按钮,表单标签等)提交文件:

<fieldset>
        <input type="file" name="file" />
    </fieldset>
Run Code Online (Sandbox Code Playgroud)

我试图通过这种方式拉它/用它:

$file = $orgname."/".basename($_FILES['file']['name']);
move_uploaded_file($_FILES['file']['tmp_name'], $file);
Run Code Online (Sandbox Code Playgroud)

我收到这些错误:

Notice: Undefined index: file in C:\wamp\www\generic\addorg.php on line 45

Notice: Undefined index: file in C:\wamp\www\generic\addorg.php on line 46
Run Code Online (Sandbox Code Playgroud)

可能是什么导致了这个?我所研究的一切都表明它应该有效.

Tus*_*usk 25

形式需要设定 enctype=multipart/form-data


djd*_*jdy 6

确保你的<form...指定enctype="multipart/form-data">