<?php$p = 12;echo ++$p;echo $p++;echo $p;echo ++$p;?>
++$p increments a and then prints it,$p++ prints and then increments.
Previous Question Next Question
Your comments will be displayed only after manual approval.