|
i stand corrected, this formula will work.
the problem is that all the neccessary info wasnt here that i need to make it work, so i will reclarify it:
$total_inches = 0.3937008*$AR_result[ 'height' ];
$feet = $total_inches/12;
$inches=$total_inches%12;
then to display, all you need is this:
echo floor($feet)."' ".$inches."'';
|