<html><head><title>Using the for Statement</title></head><body><?phpfor ( $counter=1; $counter<=12; $counter++ ) { print "$counter times 2 is ".($counter*2)."<br>";}?></body> </html>