Help for this page

Select Code to Download


  1. or download this
    POST /index.php HTTP/1.1<br>
    
    ...
    Connection: close<br>
    
    Content-Type: text/html<br>
    
  2. or download this
    use LWP::UserAgent;
    use HTTP::Cookies;
    ...
        print $response->content;
        die;
        }
    
  3. or download this
    use WWW::Mechanize;
    use HTML::Form;
    ...
    $response = $agent->request($filled_out_request);
    
    print $response->content;
    
  4. or download this
    <form id='loginform' method='post' action='index.php'>
    <div style="text-align: center;">
    ...
    <input type='submit' name='login' value='Login' class='button' /><br /
    +>
    </div>
    </form><br >