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