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.
Result of php executing
Full code of convertisseur.php
- <!doctype html>
- <html lang="fr">
- <head>
- <meta charset="utf-8">
- <title>Convertisseur</title>
- </head>
- <body>
- <?php
- //ici on initialise $f et $c pour pas qu'on aie d'erreur jusqu'à qu'on soit passés par le if
- $f ="";
- $c = "";
- if (isset($_GET['c'])) {
- $c = $_GET['c'];
- //$f calculé :
- $f = $c*(9/5)+32;
- }
- ?>
- <!-- CHAMPS ET BOUTON -->
- <form action="index.php" method="get">
- <p>Vous pouvez convertir les degrés Celsius en Fahrenheit</p>
- <label>°C </label> : <input type="text" value="<?php echo $c ?>" name="c" id="c" />
- <!-- juste au-dessus, on fait afficher $c dans le champ "f" pour qu'après la conversion il soit toujours affiché-->
- <label>°F </label> : <input type="text" name="f" id = "f" value="<?php echo $f;?>"/>
- <!-- juste au-dessus, on fait afficher $f dans le champ "f"-->
- <input type="submit" value="Convertir" id ="boutonconvertisseur" />
- </form>
- </body>
- </html>