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

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

WBOY
WBOYOriginal
2016-06-06 20:18:221268browse

<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>

通过这种方式,我在对应的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>

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


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

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

你没用过$_POST吗

Statement:
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