Help for this page

Select Code to Download


  1. or download this
    @fileinput_ap = <AP_MENU>;
    for ($i = 0; $i <= $#fileinput_ap; $i++)  { print "$fileinput_ap[$i]" 
    +}
    
  2. or download this
    while( <AP_MENU> ) {
      print;
    }
    
  3. or download this
    print while <AP_MENU>;
    
  4. or download this
    print <AP_MENU>;