提交后显示消息

cod*_*ude 5 php forms

如何在用户单击表单中的提交按钮后显示警报?

我希望在单击提交按钮后页面加载时显示警报。

有什么办法可以做到这一点吗?

编辑:

我需要的消息是显示在页面上的 HTML 文本,而不是 JavaScript 警报。

Bra*_*tie 4

pagewithform.php

<html>
  <head>
  ...
  </head>
  <body>
    ...
    <form action="myformsubmit.php" method="POST">
      <label>Name: <input type="text" name="name" /><label>
      <input type="Submit" value="Submit" />
    </form>
    ...
  </body>
</html>
Run Code Online (Sandbox Code Playgroud)

myformsubmit.php

<html>
  <head>
  ....
  </head>
  <body>
    <?php if (count($_POST)>0) echo '<div id="form-submit-alert">Form Submitted!</div>'; ?>
    ...
  </body>
</html>
Run Code Online (Sandbox Code Playgroud)

已编辑符合上次编辑时 OP 的新标准。

EDITv2在家尝试一下!

<html>
  <head>
    <title>Notify on Submit</title>
  </head>
  <body>
    <form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="POST">
      <label>Name: <input type="text" name="name" /></label>
      <input type="submit" value="Submit" />
    </form>
    <?php if (count($_POST)>0) echo "Form Submitted!"; ?>
  </body>
</html>
Run Code Online (Sandbox Code Playgroud)

试穿一下尺寸。