返回列表 發帖

php form post

  1. <?php
  2. $c = 0;
  3. if(isset($_POST["a"]) && $_POST["a"] != "" && isset($_POST["b"]) && $_POST["b"] != "")
  4. {
  5.         $c = $_POST["a"] + $_POST["b"];
  6. }
  7. ?>
  8. <html>
  9. <form action="test.php" method="post">
  10. <input type="text" name="a">
  11. <input type="text" name="b">
  12. <input type="text" name="d">
  13. <input type="submit" value="+">
  14. </form>
  15. <div><?php echo($c)?></div>
  16. </html>
複製代碼

返回列表