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> <?php if(5 < 3) { echo "Cinq est inférieur à trois"; } else if(5 > 4) { echo "Cinq est supérieur à quatre"; } ?> </body> </html>
Cinq est supérieur à quatre