<?php $a = 10; echo $a++; // returned $a, then incremented echo '<br>'; // line break echo $a; // now $a is 11