RE: Incrementing count

2004-03-30 Thread Ichim, Adrian N.
> - Original Message - > From: <[EMAIL PROTECTED]> > To: > Sent: Monday, March 29, 2004 6:20 AM > Subject: Incrementing count > > > > I'm sorry, the previous subject should have been changed. > My apologies. > > > > > >

Re: Incrementing count

2004-03-29 Thread R. Joseph Newton
Smoot Carl-Mitchell wrote: Hi Carl-Mitchell, Please stay on the list. I will address that. > I'll take this offline, since I do not think it should be on the list I disagree. With all due respect, you and I have not developed a personal correspondence. There are some very good reasons for th

Re: Incrementing count

2004-03-29 Thread R. Joseph Newton
Smoot Carl-Mitchell wrote: > This is not what the poster asked. Actually, yes it is, at least part of it. He said "would I increment by 20?... $counter would increment 1 time for every twenty lines of the file?" > This will increment the counter by 20 > for every line of the file. Read without

Re: Incrementing count

2004-03-29 Thread R. Joseph Newton
[EMAIL PROTECTED] wrote: > I'm sorry, the previous subject should have been changed. My apologies. > > while () { >$counter++; > } > > I know this is probably simple, but how would I increment by 20? In other > words, $counter would increment 1 time for every twenty lines of the file? Any >

Re: Incrementing count

2004-03-29 Thread Smoot Carl-Mitchell
On Mon, 29 Mar 2004 12:08:33 -0600 James Edward Gray II <[EMAIL PROTECTED]> wrote: > On Mar 29, 2004, at 8:20 AM, [EMAIL PROTECTED] wrote: > > > I'm sorry, the previous subject should have been changed. My > > apologies. > > > > > > while () { > >$counter++; > > } > > > > I know this is pro

RE: Incrementing count

2004-03-29 Thread Bob Showalter
[EMAIL PROTECTED] wrote: > I'm sorry, the previous subject should have been changed. My > apologies. > > > while () { >$counter++; > } > > I know this is probably simple, but how would I increment by 20? In > other words, $counter would increment 1 time for every twenty lines > of the fil

RE: Incrementing count

2004-03-29 Thread Timothy Donahue
; To: [EMAIL PROTECTED]; [EMAIL PROTECTED] > Subject: Re: Incrementing count > > > - Original Message - > From: <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Monday, March 29, 2004 6:20 AM > Subject: Incrementing count > > > > I&#

Re: Incrementing count

2004-03-29 Thread Randy W. Sims
Chance Ervin wrote: - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, March 29, 2004 6:20 AM Subject: Incrementing count I'm sorry, the previous subject should have been changed. My apologies. while () { $counter++; } I know this i

Re: Incrementing count

2004-03-29 Thread James Edward Gray II
On Mar 29, 2004, at 8:20 AM, [EMAIL PROTECTED] wrote: I'm sorry, the previous subject should have been changed. My apologies. while () { $counter++; } I know this is probably simple, but how would I increment by 20? In other words, $counter would increment 1 time for every twenty lines of t

Re: Incrementing count

2004-03-29 Thread Chance Ervin
- Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, March 29, 2004 6:20 AM Subject: Incrementing count > I'm sorry, the previous subject should have been changed. My apologies. > > > while () { >$counter++; > }

Incrementing count

2004-03-29 Thread Jimstone77
I'm sorry, the previous subject should have been changed. My apologies. while () { $counter++; } I know this is probably simple, but how would I increment by 20? In other words, $counter would increment 1 time for every twenty lines of the file? Any help would be appreciated.