PHP重定向问题

时间:2014-05-15 17:52:48

标签: php html forms

目前,我在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文件。

我如何做到这一点?

1 个答案:

答案 0 :(得分:2)

upload.php处理完表单后,请添加代码:

header('Location: index.html');
exit;

这仅在upload.php实际上不输出任何内容(包括空格)时才有效。