Help for this page

Select Code to Download


  1. or download this
    my $filename = "test.wma";
    open FILE, ">", $filename
    ...
    binmode FILE;
    print FILE $response->content;
    close FILE;
    
  2. or download this
    use strict;
    use LWP::Simple;
    my ($url,$filename) = ('http://www.aoov08.dsl.pipex.com/test.wma', 'te
    +st.wma');
    my $result = getstore($url,$filename);