Help for this page

Select Code to Download


  1. or download this
    while ($v->get_property('block') < $bcount) {
        print $fh "Some Something ";
    }
    
  2. or download this
    while ($v->get_property('block') < $bcount) {
        $fh = $v->open('w');
        print $fh "Some Something ";
        close $fh;
    }