Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

cfloop query and last row

Guest
Mar 01, 2009 Mar 01, 2009
Hello everyone,

I was trying looping over a query which has to be executed only when the last row of a previous loop has been reached. The question is: I have nested loops, I am able to print the values based on two loops:

for example: <cfloop query="advisor">
<cfloop students>
</cfloop>
</cfloop>
I am able to get student values for a particular advisor and print the values for different advisor and students. I am trying to include another loop like grades within advisor loop which should be executed at the end of students list for that particular advisor. What I am doingg right now is displaying the values in a table format.

<table>
<tr>Advisor</tr>
<tr>Student1<tr>
<tr>Student2</tr>
<tr>Grades</tr>

How is possible to know when I would reach the end of the student loop for an advisor and then loop the grades for the same advisor before proceeding to another advisor?

Any suggestions would be great.

Thanks.

TOPICS
Advanced techniques
1.1K
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Mar 01, 2009 Mar 01, 2009
LATEST
The group attribute of cfoutput would be a lot more efficient. Useage is described in the cfml reference manual. If you don't have one, the internet does.

It would also be more efficient to get all your data with a single query.
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Resources