using && in if statement not working php code example
Example 1: php if less than number
<?php
if ($a > $b)
echo "a is bigger than b";
?>
Example 2: if statement php
if (condition) {
expression
}
<?php
if ($a > $b)
echo "a is bigger than b";
?>
if (condition) {
expression
}