Home > Backend Development > PHP Tutorial > javascript - 在 Form 的 enctype 为 "multipart/form-data" 时,如何接收普通的input val内容

javascript - 在 Form 的 enctype 为 "multipart/form-data" 时,如何接收普通的input val内容

WBOY
Release: 2016-06-06 20:18:22
Original
1268 people have browsed it

<code><form enctype="multipart/form-data" method="POST" target="coverfile_update" action="xxx">
    <input type="file" name="file" id="coverfile">
    <input type="hidden" name="unlink" class="unlink">
    <input type="submit" id="update_cover_btn">
</form></code>
Copy after login
Copy after login

通过这种方式,我在对应的PHP文件中可使用“$_FILES['file']”来接收选择的文件,但是这个unlink的val内容我应该如何获取呢?


对不起,我犯蠢了,我竟然用$_files['unlink']获取内容- -应该是$_post['unlink']。

请问sf如何删除问题,太蠢了。。

回复内容:

<code><form enctype="multipart/form-data" method="POST" target="coverfile_update" action="xxx">
    <input type="file" name="file" id="coverfile">
    <input type="hidden" name="unlink" class="unlink">
    <input type="submit" id="update_cover_btn">
</form></code>
Copy after login
Copy after login

通过这种方式,我在对应的PHP文件中可使用“$_FILES['file']”来接收选择的文件,但是这个unlink的val内容我应该如何获取呢?


对不起,我犯蠢了,我竟然用$_files['unlink']获取内容- -应该是$_post['unlink']。

请问sf如何删除问题,太蠢了。。

你没用过$_POST吗

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template