in reply to Posting Form Using HTTP Request

Step 1:

perldoc CGI
Step 2:

#copy all of the code with the form in it use CGI qw|:standard|; ....
Step 3:

Alter the code to make it do what you want, or repost your attempt to modify that.

Celebrate Intellectual Diversity

Replies are listed 'Best First'.
Re^2: Posting Form Using HTTP Request
by Anonymous Monk on Sep 11, 2005 at 03:03 UTC

    Thanks for your reply .. but i think you didn't got what i mean

    The Form is already exits .. and what i want is Posting information into it Remotely ...

    i'm using HTTP::Request::Common & LWP::UserAgent and i can ONLY pass the first step with it .. my problem is how to pass the second step of the FORM ??

      WWW::Mechanize might make things a lot easier (it actually uses LWP::UserAgent underneath) -- it can basically fill out the form for you, and fill out another form on the resulting page, etc (it's basically a browser)..