Jump to content

[SOLVED] double check my BMI calculator


darkfreaks

Recommended Posts

just want to make sure i programmed it right.  also  the action is going to be the thread number would it automatically carry out the action and post it in the thread number? or would i have to do something in order for it to post in that thread.

 

 


<?php 

$height= trim($_POST['height']);
$height=str_replace(',','.');
$weight=trim($_POST['weight']);
$height=str_replace(',','');
$height=str_replace('.','');



if ($_POST['height']||$_POST['weight']=="true") 
{ $heightwo=$height/2; 

$total=$weight/$heightwo *703;}

echo "your Mass Body Index is:"($total);

?> 


Link to comment
https://forums.phpfreaks.com/topic/70708-solved-double-check-my-bmi-calculator/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.