Help for this page

Select Code to Download


  1. or download this
    use LWP::UserAgent;
    $ua = new LWP::UserAgent;
    ...
        print "Error\n";
    }
    
  2. or download this
    use CGI;
    
    ...
    print $q->header;
    @name = $q->param('keywords');
    print map("$_\n",@name);