用php提交表单后如何返回上一页?

时间:2014-03-30 14:52:48

标签: javascript php html forms

我在html中有一个表单,其“action”属性调用contact.php文件。问题是,在我提交表单后,可见的文件是一个空白页面,地址为contact.php,我想再次看到主页面的形式。

HTML:
<form id="myForm" action="php-contact/contact.php"
                       method="post" class="contact_form" autocomplete="off"
                       role="form">
                          <div class="form-group">
                            <label for="input-subject">subject</label>
                            <input name="subject" type="text" class="form-control" id="subject" placeholder="your subject" maxlength="20"/>
                          </div>

                          <div class="form-group">    
                              <label for="input-name">name</label>
                              <input name="name"  type="text" class="form-control" id="name" placeholder="your name" maxlength="20"/>
                          </div>

                          <div class="form-group">    
                            <label for="input-email">email address</label>
                            <input name="email"  type="text" class="form-control" id="email" placeholder="your email" maxlength="40"/>
                          </div> 

                          <div class="form-group" >   
                              <label for="input-message">message</label>
                              <textarea name="message" cols="10" rows="10"  class="form-control" id="comment" ></textarea>
                          </div>  

                          <button name="myFormSubmitted" type="submit" class="btn btn-primary btn-lg btn-block">send</button>
                      </form>

PHP:
  <?php
  $name = $_POST['name'];
  $email = $_POST['email'];
  $subject = $_POST['subject'];
  $message = $_POST['message'];

  $to = "pep.g@gmail.com";
  $message = '
  name: '.$name.'
  email: '.$email.'
   message: '.$message.'
  ';

 $headers = 'From: pep.website@website.com';

   if (
    mail($to, $subject, $message, $headers)
) 
      echo"<script>alert('message send succesfully')</script>";
   else
      echo"<script>alert('message not send')</script>";

 ?>

5 个答案:

答案 0 :(得分:11)

使用$_SERVER["HTTP_REFERER"]或使用当前页面网址的表单上的隐藏字段:

<form action="myAction.php">
    <input type="hidden" name="destination" value="<?php echo $_SERVER["REQUEST_URI"]; ?>"/>
    <!-- other form inputs -->
    <input type="submit"/>
</form>

myAction.php

<?php
  /* Do work */
  if(isset($_REQUEST["destination"])){
      header("Location: {$_REQUEST["destination"]}");
  }else if(isset($_SERVER["HTTP_REFERER"])){
      header("Location: {$_SERVER["HTTP_REFERER"]}");
  }else{
       /* some fallback, maybe redirect to index.php */
  }

然后,即便如此,如果由于某种原因客户端不尊重HTTP重定向,例如一些重定向javascript,元重定向和到目标的链接,你应该有回退。

答案 1 :(得分:5)

在提醒之后添加JS重定向

echo "<script>
             alert('message sent succesfully'); 
             window.history.go(-1);
     </script>";

答案 2 :(得分:0)

在你的contact.php文件中,只需使用PHP代码末尾的内容:

header("location:yourfilenamehere.php");    

这将重定向回您指定的任何页面。

答案 3 :(得分:0)

你可以做两件事......

1)在表单文件中使用php逻辑并提交到该文件。在文件的顶部,输入如下内容:

if(isset($_POST['name'])) {
// your sending logic
}

然后是你的表格。

2)使用header()函数重定向到表单。

header("Location: form.html"); 

答案 4 :(得分:0)

我觉得发布这个答案非常糟糕,因为它只是连接了另外两个SO答案。

第一部分

Charlie74在本页面的回答

// add the message you want to show to the user
header("Location: yourfilenamehere.php?alertmsg=message+send+succesfully"); 
exit();

第二部分检查查询字符串中的alertmsg名称

See SO post for getParameterByName:

function getParameterByName(name) {
    name = name.replace(/[\[]/, "\\[").replace(/[\]]/, "\\]");
    var regex = new RegExp("[\\?&]" + name + "=([^&#]*)"),
        results = regex.exec(location.search);
    return results == null ? "" : decodeURIComponent(results[1].replace(/\+/g, " "));
}
您正在重定向的页面中的

调用getParameterByName函数:

<script>
var msg = getParameterByName('alertmsg');

if (alertmsg.length > 0) {
    alert(msg);
}
</script>