Yannick Warnier wrote:
> Hi,
> 
> I cannot find any way of accessing an "action" parameter of a form
> with my perl script.
> 
> So in fact i have
> 
>   <form method="post" action="myscript.cgi?param=value">
> 
> And in the called script, I would like to have the "param" value
> "value". How can I do that? It doesn't work with
> 
>   $object = new CGI;
>   print $object->param('param');

Read perldoc CGI and search for the heading "MIXING POST AND URL PARAMETERS"

You need to use $object->url_param('param');

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to