,
Nandambakkam Post, Ramapuram, Chennai-600 089.
Jeff Peng
02/08/2009 06:02 PM
To
Neetee Pawa/GIS/c...@csc
cc
beginners@perl.org
Subject
Re: Forked script doesnt exec from a cgi script
2009/2/8 Neetee Pawa :
>
> I tried to try a test.pl which sleeps for 10 secs , then i can
Hi All,
I am trying to invoke a perl script in background from a cgi script. Code
seems working as i can see the script gets invoked however nothing gets
executed from the script. ( the script is functioning fine from the
command prompt)
Here is what i have written
$SIG{CHLD}='IGNORE';
my $p
Hi All,
I am trying to declare variables(hash ref) dynamically in a loop
I wanna use the name of hash ref as the value of string.
For eg:
my $i=0;
foreach my $k ( sort keys %$headers) {
$$i={};>>> creating hash ref with the value
of $i