in reply to Re: use CGI vs use CGI qw(:standard)
in thread use CGI vs use CGI qw(:standard)
I changed it to 'use CGI'.
There were problems at first because in my code I had lines such as 'print header' and 'my $action = param('query'). I think those caused the script to die. I changed the former to 'print $q->header' and the latter to '$action = $q->param('query') and the script works like before. cheers :)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: use CGI vs use CGI qw(:standard)
by Grygonos (Chaplain) on Apr 19, 2004 at 18:35 UTC |