<?php $a = 1; while ($a < 10) { echo 'Now, $a is ' . $a; echo '<br>'; // line break $a++; // increment by 1 }