">
<?php$n = 10;$m = 10;if ($n && ($m = $n + 10)) { echo "True";}echo $m;?>
In if condition when the first case is 10 and is an && operation then the second command is executed.
Previous Question Next Question
Your comments will be displayed only after manual approval.