Help for this page

Select Code to Download


  1. or download this
      # list processing
      print map "$_<br />", <AP_MENU>;
    ...
          local $, = "<br />";
          print <AP_MENU>, '';
      }
    
  2. or download this
      while ( <AP_MENU> )
      {
    ...
    
          print "$_<br />\n";
      }