Calling a cgi on other web server.

2001-09-27 Thread Andy Lim
Hello. Guys. This might be a stupid question. I have two web servers. One is my main web server which runs under linux and EMBPERL. (Web server-A) The other is a windows based web server. (Web server - B) I have ODBC connection setup between server B and unidata server. But can't have connection

Make test error with V1.3.2

2001-05-16 Thread Andy Lim
I have no idea of what below error message means. Any body knows? - Starting httpd... [24707]SES: Embperl Session management enabled (>= 1.50) pid = 24707 ok Testing mod_perl mode... #0 ascii... ok #1 pure.htm...

sorting a hash for checkbox list..

2001-05-11 Thread Andy Lim
Hello. I want to sort a hash which contaning key-value pair for a list checkbox (like below) so that it print in the specific order. Anyone know how to do this? [- @application_k = keys %GSIS::PROD_APPLICATION; @application_v = values %GSIS::PRO

RE: How to send mutiple cookie entries?

2001-05-02 Thread Andy Lim
That is a good news. Thanks Gerald. Andrew -Original Message- From: Gerald Richter [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 02, 2001 5:31 AM To: [EMAIL PROTECTED] Cc: Andy Lim Subject: Re: How to send mutiple cookie entries? > > I found the only way to send the same

How to send mutiple cookie entries?

2001-05-01 Thread Andy Lim
Hello. I am trying to send mutiple cookie entries($cookie1, $cookie2, $cookie3) as you can see from below code. use CGI; my $cookie1 = cookie(-name=>'eid', -value=>$arr[0], -expires=>'1h'); my $cookie2 = cookie(-name=>'uname', -value=>$uname, -expires=>'1h'); my $

RE: A newbie question. -

2001-04-04 Thread Andy Lim
7 AM To: [EMAIL PROTECTED] Subject: Re: A newbie question. - On Wed, Apr 04, 2001 at 10:34:26AM -0700, Andy Lim wrote: > The weired thing is, if I define this sub function at the top of this HTML > page, it generates no error at all. It means I get into trouble when I > define sub-functions a

A newbie question. -

2001-04-04 Thread Andy Lim
I've been encountered with the "famous" random undefined sub error. I learned how to fix this error when I call a sub functions from other library files but, look at below test page. I am having problem in calling subfunctions(AddNumber) defined in the same HTML page. The weired thing is, if I def