Help for this page

Select Code to Download


  1. or download this
    while (<$file>) {
           print;
    
  2. or download this
    # Copy a binary file to somewhere safe
    open (OUTFILE,">>/usr/local/web/users/feedback");
    ...
         print OUTFILE $buffer;
    }
    close(OUTFILE); #Always make sure to close the file or it won't work.