Guest User

Untitled

a guest
Jul 31st, 2011
387
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.26 KB | None | 0 0
  1. <?php
  2.  
  3. $ft = $_POST['feet'];
  4. $in = $_POST['inches'];
  5. $lbs = $_POST['pounds'];
  6.  
  7. $total_height = $ft * 12 + $in;
  8.  
  9. $top_half = $lbs * 703;
  10. $bottom_half = pow( $total_height , 2 );
  11.  
  12. $result = $top_half / $bottom_half;
  13.  
  14. $finalResult = round($result , 1);
  15.  
  16. ?>
Advertisement
Add Comment
Please, Sign In to add comment