Hey all.  I am looping through one query to create rows in a table,
and then, due to the first query having dynamic column names, looping
through another to create the columns.  So:

<cfloop query="MyRowQuery">
     <tr>
          <cfloop query="MyColumnQuery">
               <td>Stuff</td>
          </cfloop>
     </tr>
</cfloop>

Problem is that it is only spitting out the values from the first
record of MyRowQuery.  So for example, if I manually spit out "Stuff"
before the MyColumnQuery, it shows the correct data for MyRowQuery,
like: Stuff1, Stuff2, Stuff3.

But when I try to output the data from MyRowQuery inside
MyColumnQuery, I get MyStuff1, MyStuff1,MyStuff1.

Any ideas?    

Cheers,

Chad
who is risking being smitten by coding on the Sabbath

---
You are currently subscribed to cfaussie as: [email protected]
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/

Reply via email to