<?php $counter=0; for($start=0; $start<11;$start++) { $counter=$counter+1; print $counter."<br>"; } //======output===== /* 1 2 3 4 5 6 7 8 9 10 11 */ ?>