Estudar pela Apostila PHP Progressivo
Fahrenheit para Celsius
Dada uma temperatura F em Fahrenheit, ela vira Celsius (C) com a seguinte fórmula:<html> <head> <title>Curso PHP Progressivo</title> </head> <body> <form action='home.php' method="get"> Temperatura em Celsius: <input type="text" name="C"><br> <input type="submit"> </form> <?php $C = $_GET['C']; $F = (9/5)*$C + 32; echo "Em Farenheit: $F <br /><br />"; ?> </body> </html>
Celsius para Fahrenheit
Manipulando a equação anterior, chegamos na temperatura de conversão de Celsius (C) para Fahrenheit (F):<html> <head> <title>Curso PHP Progressivo</title> </head> <body> <form action='home.php' method="get"> Temperatura em Farenheit : <input type="text" name="F"><br> <input type="submit"> </form> <?php $F = $_GET['F']; $C = ($F-32)*5/9; echo "Em Celsius: $C"; ?> </body> </html>