phptutorials

PHP Program to Convert Kilometers into Miles

In this example, we will write a PHP program to convert Kilometers into Miles. The formula is very simple, 1 kilometer is equal to 0.62137119 miles, which is the conversion factor from kilometers to miles.

So we just have to multiply the kilometer value with 0.62137119, eg: 5 kms x 0.62137119 = 3.1068 miles.

Here is a simple PHP Snippet:


Let’s write the same with a beautiful HTML form to get the Kilometer input from the user and convert into miles and display the result on the browser.

It’s a simple program, so go through the above lines of code to understand the functionality.

You can see the live of the above PHP program here,

demo

Related Posts

Leave a Reply