RE: Counter and scoping(?) issue

2002-05-29 Thread Camilo Gonzalez
Gack, you Perl Lords once again save my butt. Thanks Roberto, it worked like a charm. -Original Message- From: Kevin Meltzer [mailto:[EMAIL PROTECTED]] Sent: Wednesday, May 29, 2002 7:30 AM To: Roberto Ruiz Cc: Camilo Gonzalez; [EMAIL PROTECTED] Subject: Re: Counter and scoping(?) issue

Re: Counter and scoping(?) issue

2002-05-29 Thread Kevin Meltzer
On Wed, May 29, 2002 at 03:05:36AM -0500, Roberto Ruiz ([EMAIL PROTECTED]) said something similar to: > Hi, God bless you. > > On Tue, May 28, 2002 at 12:45:53PM -0500, Camilo Gonzalez wrote: > > if ( $confirm_counter = "1"){ > ^ May be this your problem? > > In the

Re: Counter and scoping(?) issue

2002-05-29 Thread Janek Schleicher
Camilo Gonzalez wrote at Tue, 28 May 2002 19:45:53 +0200: > Gurus, > > I've been having this problem in various permutations throughout my Perl life. For >this particular > function, I set $confirm_counter to 1. Then I use a foreach loop to send email to >multiple > recipients. Within the for

Re: Counter and scoping(?) issue

2002-05-29 Thread Roberto Ruiz
Hi, God bless you. On Tue, May 28, 2002 at 12:45:53PM -0500, Camilo Gonzalez wrote: > > I've been having this problem in various permutations throughout my Perl > life. For this particular function, I set $confirm_counter to 1. Then I use > $xheader = "X-HTTP-Client: [$1]\n" >

Re: Counter and scoping(?) issue

2002-05-28 Thread Greg Matheson
On Tue, 28 May 2002, Camilo Gonzalez wrote: > Gurus, > I've been having this problem in various permutations throughout my Perl > life. For this particular function, I set $confirm_counter to 1. Then I use > a foreach loop to send email to multiple recipients. Within the foreach > loop, I increm

Counter and scoping(?) issue

2002-05-28 Thread Camilo Gonzalez
Gurus, I've been having this problem in various permutations throughout my Perl life. For this particular function, I set $confirm_counter to 1. Then I use a foreach loop to send email to multiple recipients. Within the foreach loop, I increment $confirm_counter by using $confirm_counter++. I th