Convert From Feet to Miles Using PHP Script Code With HTML

Hello Friends Today, through this tutorial, I will tell you How can i Convert From Feet to Miles Using PHP Script Code With HTML.

Certainly! Here’s a simple PHP script with HTML to create a converter tool from feet to miles:

feettomiles.php

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Feet to Miles Converter</title>
</head>
<body>
<?php
// Function to convert feet to miles
function feetToMiles($feet) {
$miles = $feet / 5280;
return $miles;
}
// Check if form is submitted
if ($_SERVER["REQUEST_METHOD"] == "POST") {
// Get feet value from form
$feet = $_POST["feet"];
// Validate input
if (!empty($feet) && is_numeric($feet)) {
// Convert feet to miles
$miles = feetToMiles($feet);
echo "<p>$feet feet is equal to $miles miles</p>";
} else {
echo "<p>Please enter a valid numeric value for feet.</p>";
}
}
?>
<form method="post" action="<?php echo htmlspecialchars($_SERVER["PHP_SELF"]); ?>">
<label for="feet">Feet:</label>
<input type="text" id="feet" name="feet" required>
<input type="submit" value="Convert">
</form>
</body>
</html>

This script defines a function `feetToMiles` to perform the conversion and uses a simple HTML form to take input for feet. When the form is submitted, it validates the input and displays the converted value in miles. Make sure to save this code in a `.php` file and run it on a server with PHP support.