Bora ajudar o programador a transformar café em código?

Conversão entre temperaturas Celsius e Fahrenheit em PHP

Neste tutorial, vamos resolver as questões 08 e 09 da lista de exercícios de PHP Básico, sobre conversão entre temperaturas Fahrenheit e Celsius.

Estudar pela Apostila PHP Progressivo

Fahrenheit para Celsius

Dada uma temperatura F em Fahrenheit, ela vira Celsius (C) com a seguinte fórmula:
Apostila de PHP para download
Nosso código fica:

<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):
Apostila de PHP
Nosso código fica:
<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>

Veja também

O melhor PC para programar

O melhor celular para programar