LWP passing variables in get method

2003-03-30 Thread Ramprasad
How do I pass variables to a form using LWP in the GET Method. If my url is http://192.168.2.25/adminbin/getdetails and I Have to pass two values { user => 'ram prasad' , days => '2' } I am presently creating a querystring $querystring = user=ram+prasad&days=2 and use http://192.168.2.25/adminbin/

Re: LWP passing variables in GET method

2003-03-26 Thread Randal L. Schwartz
> "Ramprasad" == Ramprasad <[EMAIL PROTECTED]> writes: Ramprasad> hello all , Ramprasad> I am trying my script with LWP Ramprasad>suppose in my browser I type in Ramprasad> http://google.com/search?q=sendmail Ramprasad> I get the results all right Ramprasad> but when I try to pass va

RE: LWP passing variables in GET method

2003-03-26 Thread Dan Muey
> hello all , Howdy > > I am trying my script with LWP >suppose in my browser I type in > >http://google.com/search?q=sendmail >I get the results all right >but when I try to pass variables by get method using LWP I get an error > message > > > I have tried allowing cookies too. >

LWP passing variables in GET method

2003-03-26 Thread Ramprasad
hello all , I am trying my script with LWP suppose in my browser I type in http://google.com/search?q=sendmail I get the results all right but when I try to pass variables by get method using LWP I get an error message I have tried allowing cookies too. I am using LWP like this $ua = LW