A simple PHP Pounds to kilograms conversion snippet

// This is a PHP Pounds to Kilograms conversion <?php $pounds = 150; $lbs_kg = 0.4535; $Kgrams = $pounds *$lbs_kg; echo "weight: "; echo $pounds; echo "lbs = "; echo $Kgrams; echo " Kg"; ?>

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.