这是我的代码:
<input type="submit" name="send" class="do__order" value="order" >
现在,我希望在提交表单数据后将提交的内容重定向到我选择的任何页面,我该怎么做?
答案 0 :(得分:0)
将以下行添加到脚本中:
header('Location: http://www.example.com/');
答案 1 :(得分:0)
您可以在进行检查的页面上尝试这样的操作。我们说这是check.php
if(isset($_POST['send'])){
header('Location: somewhere.php');
}
您还需要在method
标记中添加form
属性,在这种情况下,它会post
,因此method="post"
和action
会是action="check.php"
。