Re: arguments in the call of cgi

John Beaman (JRB@w3f.com)
Thu, 13 Jul 2000 08:30:12 -0700


All you need to do is add:  method="post" to your form tag.
-John

> Jean Schurger wrote:
> 
> Hello ! There is the problem:
> 
> I want to simulate the submit below with a perl script
> 
> <html>
> <body>
> <form action="the_cgi">
> <input type="text" name=truc>
> <input type="hidden" name="machin" value="foo">
> <input type="submit" name="bar">
> </form>
> </bldy>
> </html>
> 
> I don't want something like
> 
> the_cgi?truc=blahblah&machin=foo
> 
> I want to do this with LWP
> 
> How can I do what ???
> 
>                 Thanks