Help for this page

Select Code to Download


  1. or download this
    <form action="http://localhost/example.pl">
    <input type=image src=send.gif name=some value=thisvalue>
    </form>
    
  2. or download this
    use WWW::Mechanize;
    my $mech = WWW::Mechanize->new;
    $mech->get('http://localhost/index1.html');
    $mech->click_button(name => 'some'); # it not send the value -> "thisv
    +alue"!