in reply to CGI.pm did't get GET params

You're mixing POST and GET parameters. See the documentation on mixing POST and URL parameters. Basically, you call the ->url_param() method on those. I thought there also was a unified way to get at both when mixing, but it seems you have to query both if you're not sure from where a parameter comes while using mixed style.

Replies are listed 'Best First'.
Re^2: CGI.pm did't get GET params
by Gangabass (Vicar) on Jan 22, 2009 at 09:55 UTC

    Thanks! ->url_param() helps.