PHP feet-to-meters converter : Float « Data Type « PHP






PHP feet-to-meters converter

 
<head>
    <title>Feet to meters conversion</title>
</head>
<body>
<?php
$feet = htmlentities($_GET["feet"]);
if ($_GET[feet] != NULL){
    echo "<strong>$feet</strong> feet converts to <strong>";
    echo $feet * 0.3048;
    echo "</strong> meters.<br />";
}
?>
<form action="<?php echo(htmlentities($_SERVER['PHP_SELF'])); ?>" method="GET">
    <label>Feet:
        <input type="text" name="feet" value="<?php echo $feet; ?>" />
    </label>
    <input type="submit" value="Convert!" />
</form>
</body>
</html>
  
  








Related examples in the same category

1.Addition of two floating-point variables compared to a variable can lead to an unexpected result.
2.Addition of two floating-point variables compared to a variable with the expected value result can lead to an unexpected result.
3.Compare floating-point values,avoid the == operator and use the <, >, >=, and <=.
4.Comparing float values
5.Comparing floating point numbers
6.Compound Interest
7.Continuously Compounded Interest Calculator
8.Finding the distance between two points
9.Float is converted to an integer before the binary and (&) operation is executed.
10.Floating point numbers ("doubles") can be specified using any of the following syntaxes:
11.Floating-point arithmetic:
12.the float is converted to an integer before the binary and (&) operation is executed.
13.Specifying Precision
14.Storing Floating Point Numbers in PHP
15.Simple Interest
16.Calculate the area of a circle of given radius
17.Define Integer, double and string value and output them
18.Add a PHP block and create a variable that holds a floating-point number