Statement Php



A while Statement


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