Advertisement
Guest User

Untitled

a guest
Jan 25th, 2015
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. <?php
  2. $height=$_POST["height"];
  3. $weight=$_POST["weight"];
  4. $changm=$height/100;
  5. $bmi=$weight/($changm*$changm);
  6. if ($bmi!=null) {
  7. echo "你的BMI值是".$bmi."<br/>";
  8. }
  9. ?>
  10.  
  11. <html>
  12. <head>
  13. </head>
  14. <body>
  15. <form name="form1" method="post" action="bmi.php">
  16. BMI計算<br/>
  17. 身高: <input type="text" name="height" size="30"/>cm<br/>
  18. 體重: <input type="weight" name="weight" size="30"/>kg<br/>
  19. <input type="submit" value="送出計算">
  20. <input type="reset" value="重設">
  21. </form>
  22. </body>
  23. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement