Re: problem with environment variable

2001-05-18 Thread Timothy Kimball
: $hostadd = $ENV{REMOTE_HOST}; : : print "Host : $hostadd\n"; : : But it isnt working , all I see is : : Host: Your server (I'm assuming Apache) may be configured with: HostnameLookups Off If this is the case, then the server will not try to resolve IP addresses into hostnames. This i

RE: problem with environment variable

2001-05-18 Thread Wagner-David
EMP/tmp724.aaa The value of LOGNAME is dwagne01 ... Might try and see what you have within your ENV to start with. Wags ;) -Original Message- From: FLAHERTY, JIM-CONT [mailto:[EMAIL PROTECTED]] Sent: Friday, May 18, 2001 10:17 To: Beginners (E-mail) Subject: problem with environment varia

problem with environment variable

2001-05-18 Thread FLAHERTY, JIM-CONT
Here is my code # # Drop us an E-mail # $hostadd = $ENV{REMOTE_HOST}; print "Host : $hostadd\n"; But it isnt working , all I see is Host: What am I doing wrong ? Thanks in advance