POST方法不接受文件输入

时间:2015-11-14 07:00:23

标签: php file post methods

这是我的HTML:

<!DOCTYPE html>
<html>
<head>
    <title>This is where we add Party.</title>
</head>
<body>
<form action="viewParties.php" method="post" enctype="multipart/form-data">

PartyList:<br>
<input type="text" name="partylist"><br>
<input type="file" name="pafile"><br><br>

President:<br>
<input type="text" name="president"><br>
<input type="file" name="pfile"><br><br>

Vice President:<br>
<input type="text" name="vicepresident"><br>
<input type="file" name="vpfile"><br><br>

Secretary:<br>
<input type="text" name="secretary"><br>
<input type="file" name="secpfile"><br><br>

<input type="submit" name="submit"><br><br>

</form> 
</body>
</html>

基本上我想要发生的是POST方法同时采用名称和文件位置。但是当我在另一个PHP文件中print_r($ _ POST)时,它只显示名称。有人知道如何解决这个问题吗?

1 个答案:

答案 0 :(得分:2)

找到它。事实证明我需要,不仅要打印($ _ POST)以查看我提交的内容,还要打印到print_r($ _ FILES)以查看我提交的文件。我做了一些修补,这就是我发现的。希望这有助于其他人。 =)