Data Type Php


    Feet to meters conversion


$feet = htmlentities($_GET["feet"]);
if ($_GET[feet] != NULL){
    echo "$feet feet converts to ";
    echo $feet * 0.3048;
    echo "
 meters.";
}
?>
" method="GET">