PHP 中的确认框

Confirmation box in PHP

我试图在 if 子句中按下提交按钮后弹出一个确认框。如果单击 "OK",PHP 脚本将继续,如果单击 "Cancel",它将停止。

if(isset($_POST['submit'])) {
   $get_randeman = $_POST['randeman_realize'];
   if($get_randeman < $randeman_min) {
      echo '<script>confirm("Are you sure?");
          if(confirm("Are you sure?") == false) {
             return;
          } else {
          continue;
         }
   </script>';
} else {

//proceed

你需要这样的东西:

<a href="http://www.google.com" onclick='
            if(confirm("Are you sure?") == false) {
                return false;
            } else {
                //
            }'>google.com</a>