Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- function TMB($sexo,$peso,$altura,$idade){
- if($sexo == 1) //masculino
- return 66 + (13.7 * $peso) + (5 * $altura) - (6.8 * $idade);
- else if($sexo == 2) //femenino
- return 65.5 + (9.6 * $peso) + (1.8 * $altura) - (4.7 * $idade);
- }
- ?>
Advertisement
Add Comment
Please, Sign In to add comment