doushouhe7072 2015-08-13 12:33
浏览 41
已采纳

PHP echo重定向

I want to echo something in a post after submitting a form, then redirecting the header to cancel the double submit problem. Currently, Output_buffering turned on to allow the redirect to work. here some example code that illustrates the problem. Just make sure Output_buffering is on in php.ini.

<?php
   if(isset($_POST['submit'])){
   echo "hi";
}

   if (count($_POST) {
    header("Location: ".$_SERVER['REQUEST_URI']);
    exit();
    }
?>

<form action="<?php echo htmlentities($_SERVER['REQUEST_URI']); ?>" method="POST" name="edit" >
    <button type="submit" value="submit" name="submit">edit</button>
</form>
  • 写回答

2条回答 默认 最新

  • douyun8885 2015-08-13 12:50
    关注

    You should reverse the order.

    On submit:

    1. Process yours submit form.
    2. Push desired output message into yours session.
    3. Redirect to whatever/message page.

    On message page show:

    1. Retrive message, pushed to session.
    2. Cleanup session record.
    3. Display message.

    It's can be separate page, same page, as with submit for, or any other page.

    Or... Do the work with JavaScript and AJAX:

    <?php
        if(isset($_POST['submit'])) {
            ...
            if (/all is ok/)
                die(json_encode(array('status' => 'ok', 'message' => 'Hi!')));
            else {
                die(json_encode(array('status' => 'err', 'message' => 'I\'m failed!')));
            }
        }
    ?>
    
    <form action="<?php echo htmlentities($_SERVER['REQUEST_URI']); ?>" method="POST" name="edit" >
        <button type="submit" value="submit" name="submit">edit</button>
    </form>
    <script language="javascript">
      $('form').submit(function() {
          var parameters = ...; // collect parameters from form
          $.getJSON('/url-to-script', parameters)
           .success(function(response) {
               if (response.message == "ok")
                   alert(response.message);
               else
                   alert('Can\'t process input:
    ' + response.message);
           })
           .error(function(response) {
               alert('What a terrible failure!');
           });
      });
    </script>
    

    When .success() fired - you can show supplied message to user via alert/custom modal message box an then make redirect (document.location = '<?php echo ... ?>') or replace form on page with some custom message and link/button to proceed... Lots of variants.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 c程序不知道为什么得不到结果
  • ¥40 复杂的限制性的商函数处理
  • ¥15 程序不包含适用于入口点的静态Main方法
  • ¥15 素材场景中光线烘焙后灯光失效
  • ¥15 请教一下各位,为什么我这个没有实现模拟点击
  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置