RE: References & subs

2001-05-22 Thread Arthur Cohen
: : Well, it is possible (and Jan sure knows it. He just doesn't want to : scare you out :) : : If you play with typeglobs you may create such an alias : Thanks... I did know about this possibility but preferred to avoid it since it's not absolutely necessary. --Art

RE: Perl Source Code

2001-05-22 Thread Matthew Thompson
check out http://www.perl.com its the first link at the top - not the advert ;p Matt -Original Message- From: Orel Beckford [mailto:[EMAIL PROTECTED]] Sent: Tuesday, May 22, 2001 2:25 PM To: [EMAIL PROTECTED] Subject: Perl Source Code Hi All I'm trying to get the source code for perl s

Perl Source Code

2001-05-22 Thread Orel Beckford
Hi All I'm trying to get the source code for perl so that I can build it on a linux system, does anyone know were I can get this. Thank Orel (force) __ Do You Yahoo!? Yahoo! Auctions - buy the things you want at great prices http://auctions.ya

Re: Perl ENV variable

2001-05-22 Thread Tim Scott
It's possibly worth mentioning (should you ever wish to transfer to a different machine) that not all of these variables have the same name under all web servers on all platforms. Some web servers hide system environment variables from cgi scripts for security reasons. Some web servers prefix t

Re: Perl ENV variable

2001-05-22 Thread David Hempy
At 04:40 PM 5/22/2001 +0800, Kan, Yu-Ting wrote: >Dear all, >I found that there are a lot environment variable called by perl >like $ENV{'REQUEST_METHOD'} and $ENV{'CONTENT_LENGTH'} > >I need that for writing cgi programs in perl. How and where can I find all >of them? > >Thanks a lot > >regards >

Perl ENV variable

2001-05-22 Thread Kan, Yu-Ting
Dear all, I found that there are a lot environment variable called by perl like $ENV{'REQUEST_METHOD'} and $ENV{'CONTENT_LENGTH'} I need that for writing cgi programs in perl. How and where can I find all of them? Thanks a lot regards Kan ___ ActivePe

Re: References & subs

2001-05-22 Thread Jenda Krynicky
> From: Jan Dubois <[EMAIL PROTECTED]> > On Mon, 21 May 2001 18:15:02 -0400, "Arthur Cohen" <[EMAIL PROTECTED]> > wrote: > > >: > > >: >sub add2hash2 { > >: > # refer to data indirectly using local (my) hash > >: > my $thRef = shift @_; > >: > my %th = %$thRef; > >: > >: You are maki