<?php$p = 2; $q = 2; $r = 2;echo ++$p + ++$p+$p++; print $p++ + ++$q; print ++$r + $r++ + $p++;?>
Follow the order of post and pre increments.
Previous Question Next Question
Your comments will be displayed only after manual approval.