Help for this page

Select Code to Download


  1. or download this
        for ($current_length = 1; $current_length >= $length_limit; $curre
    +nt_length++)
        {
        ....
        }
    
  2. or download this
        for ($current_length = 1; $current_length <= $length_limit; $curre
    +nt_length++)
        {
        ....
        }
    
  3. or download this
        for $current_length (1 .. $length_limit) {
        ....
        }