目前,我在index.html文件中有表单:
<div id="submit">
<form action="upload.php" method="post" enctype="multipart/form-data">
Select your file: <input type="file" name="file"><br><br>
<input type="submit" value="Upload">
</form>
</div><!--end submit-->
它运行我在upload.php文件中的代码,但是,我希望页面返回到index.html文件。
我如何做到这一点?
答案 0 :(得分:2)
在upload.php
处理完表单后,请添加代码:
header('Location: index.html');
exit;
这仅在upload.php
实际上不输出任何内容(包括空格)时才有效。