convertisseur - PHP Online

Form of PHP Sandbox

Enter Your PHP code here for testing/debugging in the Online PHP Sandbox. As in the usual PHP files, you can also add HTML, but do not forget to add the tag <?php in the places where the PHP script should be executed.



Your result can be seen below.

Result of php executing





Full code of convertisseur.php

  1. <!doctype html>
  2. <html lang="fr">
  3.   
  4.         <head>
  5.                 <meta charset="utf-8">
  6.                 <title>Convertisseur</title>
  7.         </head>
  8.   
  9.   <body>
  10.     
  11.     <?php
  12.         //ici on initialise $f et $c pour pas qu'on aie d'erreur jusqu'à qu'on soit passés par le if
  13.         $f ="";
  14.         $c = "";
  15.         if (isset($_GET['c'])) {
  16.             $c = $_GET['c'];
  17.             //$f calculé :
  18.             $f = $c*(9/5)+32;
  19.         }
  20.     ?>
  21.           
  22.     <!-- CHAMPS ET BOUTON -->      
  23.     <form action="index.php" method="get">
  24.       
  25.         <p>Vous pouvez convertir les degrés Celsius en Fahrenheit</p>
  26.  
  27.       
  28.         <label>°C </label> : <input type="text" value="<?php echo $c ?>" name="c" id="c" />
  29.         <!-- juste au-dessus, on fait afficher $c dans le champ "f" pour qu'après la conversion il soit toujours affiché-->
  30.  
  31.       
  32.         <label>°F </label> : <input type="text" name="f" id = "f" value="<?php echo $f;?>"/>
  33.         <!-- juste au-dessus, on fait afficher $f dans le champ "f"-->
  34.  
  35.       
  36.         <input type="submit" value="Convertir" id ="boutonconvertisseur" />
  37.       
  38.     </form>
  39.     
  40.   </body>
  41. </html>
File Description
  • convertisseur
  • PHP Code
  • 03 May-2023
  • 1.08 Kb
You can Share it: