消息后重定向到上一页

Redirect to Previous Page After Message

我想在提示的功能消息上按“确定”后返回上一页。

Php代码

function function_alert($message) { 
  
    // Display the alert box  
    echo "<script>alert('$message');
    document.location='javascript://history.go(-1)';
    </script>";
    } 

    // Function call 
    function_alert("This email has already subscribed");
 }

Alert Box

非常感谢!

试过这个

function function_alert($message) { 
    echo "<script>
          alert('$message')
          history.back()
          </script>";
}