condition

Solutions on MaxInterview for condition by the best coders in the world

showing results for - "condition"
Thaddeus
31 Jul 2019
1<?php
2if ($a > $b) {
3    echo "a est plus grand que b";
4} elseif ($a == $b) {
5    echo "a est égal à b";
6} else {
7    echo "a est plus petit que b";
8}
9?>
similar questions
queries leading to this page
condition