">
<?php$p = 5;$q = 6;if (++$p == $q++){ echo "true ", $q, $p;}?>
p is preincremented and q is post incremented thus both are 6 in the if condition, later q is increment.
Previous Question Next Question
Your comments will be displayed only after manual approval.