Re: doubling E-mail

2004-09-10 Thread Lawrence Ng
make sure u qualify the query to be more specific. [EMAIL PROTECTED] 9/10/2004 1:28:44 PM I have a query that pulls out an E-mail address.Then I loop through the query and output the E-mail addresses.When it outputs the address it doubles it up. For example: cfquery ... SELECT Email FROM

Re: doubling E-mail

2004-09-10 Thread joe velez
are you looping the query and cfoutput-ing the query?? [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings] [Donations and Support]

Re: doubling E-mail

2004-09-10 Thread Todd
PROTECTED] Sent: Friday, September 10, 2004 4:31 PM Subject: Re: doubling E-mail make sure u qualify the query to be more specific. [EMAIL PROTECTED] 9/10/2004 1:28:44 PM I have a query that pulls out an E-mail address.Then I loop through the query and output the E-mail addresses.When it outputs

RE: doubling E-mail

2004-09-10 Thread Patrick McGeehan
-Original Message- From: joe velez [mailto:[EMAIL PROTECTED] Sent: Friday, September 10, 2004 4:43 PM To: CF-Talk Subject: Re: doubling E-mail are you looping the query and cfoutput-ing the query?? _ [Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings

RE: doubling E-mail

2004-09-10 Thread Mark W. Breneman
I bet you have a more then one set of cfoutput tags nested. cfoutput cfquery ... SELECT Email FROM table /cfquery cfoutput query=query #Email#br /cfoutput /cfoutput In cf5 having a output nested in side of the an output would throw an error. If CFMX it does a strange form of looping.