Statement Php



Using the for Statement


for ( $counter=1; $counter<=12; $counter++ ) {
    print "$counter times 2 is ".($counter*2)."
";
}
?>