$name = "Levani";
if ( $name == "Levani") {
echo "Condition is True !\n";
}
// "l" A full textual representation of the day of the week
if (date("l") == "Monday") {
echo "Let's start coding !\n";
}
$x = 10;
$y = 5;
if ($x > $y) {
echo "10 > 5\n";
}
if ($x < 2) {
// conditions is false
}