Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -Tw
    
    ...
          submit,end_form,end_html,
       ;
    }
    
  2. or download this
    use strict;
    
    ...
    my $response = $ua->request($request);
    
    print $response->content, "\n";
    
  3. or download this
    use strict;
    use IO::Socket qw(:DEFAULT :crlf);
    ...
    
    my $data;
    print $data while read($sock,$data,1024) > 0;