">
<?php$n = 5;if ($n++ && ($n == 5)) echo "Yes\n$n";else echo "No\n$n";?>
The first condition returns true and increments but the second condition is false.
Previous Question Next Question
Your comments will be displayed only after manual approval.