Help for this page

Select Code to Download


  1. or download this
    for ($i=1 ;$i<=$number ; $i++) {
      ...
    }
    
  2. or download this
    foreach $i (1..$count) {
      ...
    }
    
  3. or download this
    foreach my $i (1..$count) {
      ...
    }