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
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