I am not a programmer but here is the php script,
[akshay@localhost tmp]$ cat test.php
<?php
function cm2feet($cm)
{
$inches = $cm/2.54;
$feet = intval($inches/12);
$inches = $inches%12;
return sprintf('%d ft %d ins', $feet, $inches);
}
echo cm2feet(162)
?>
hopefully this is something that...