in reply to Re: Perl cgi - getting the values from select
in thread Perl cgi - getting the values from select

Thanks, Prior Nacre V :)

I've that, it didn't work :) I'm still working on it...

  • Comment on Re^2: Perl cgi - getting the values from select

Replies are listed 'Best First'.
Re^3: Perl cgi - getting the values from select
by Prior Nacre V (Hermit) on Aug 07, 2004 at 05:26 UTC

    Here's a few things you can check:

    • The method attribute of the form element is set to 'post'
    • The action attribute of the form element is set to the correct URI
    • If you use the enctype attribute of the form element, it should be set to 'application/x-www-form-urlencoded'
    • Use the $q->param method without arguments to get a list of all parameter names returned to your CGI script

    Regards,

    PN5