Exécuter
❯
Exécuter le code
Ctrl+Alt+R
Changer d'orientation
Ctrl+Alt+O
Changer de thème
Ctrl+Alt+D
<!DOCTYPE html> <html> <body> <h1>La< Operator</h1> <p>Comparez deux variables et écrivez un message si $y est inférieur à $x.</p> <?php $x = 100; $y = 50; if ($y < $x) { echo "$y est inférieur à $x"; } ?> </body> </html>
L'opérateur <
Comparez deux variables et écrivez un message si $y est inférieur à $x.
50 est inférieur à 100