">
<?php$num = 1;if ($num--) print "False";if ($num++) print "True"; ?>
Due to post increment and post decrement only the first condition is satisfied.
Previous Question Next Question
Your comments will be displayed only after manual approval.