Re: Problem using hidden variables

2004-03-06 Thread zsdc
Kasturirangan Rangaswamy wrote: I have a perl program that has an include directive calling another Perl program in it. The structure is somewhat as follows first.pl -- #!/usr/local/bin/perl require "second.pl" $q = new CGI; print $q->hidden(-name='first', value='1'); second($q); End of f

Problem using hidden variables

2004-03-05 Thread Kasturirangan Rangaswamy
Hi, I have a perl program that has an include directive calling another Perl program in it. The structure is somewhat as follows first.pl -- #!/usr/local/bin/perl require "second.pl" $q = new CGI; print $q->hidden(-name='first', value='1'); second($q); End of first.pl s