Passing Perl parameters in a cgi-script

2006-02-20 Thread Mary Anderson
I have come to the conclusion that passing perl parameters from one perl subroutine to another just doesn't work in CGI. It looks like everything is passed by value, and the language is not set up to take refs. This being the case, how best to handle the following piece of DBI code: my$d

Re: Passing Perl parameters in a cgi-script

2006-02-21 Thread Ed Pigg
On Feb 21, 2006, at 1:08 AM, Mary Anderson wrote: I have come to the conclusion that passing perl parameters from one perl subroutine to another just doesn't work in CGI. It looks like everything is passed by value, and the language is not set up to take refs. This being the case, how b