I have 2 tables. One is for categories, the second is for Questions.
category table:
category_id
category_name
questions table:
question_name
question_id
category_id
How can I loop though all the category names and show the questions grouped under each category name? Using Coldfusion, so I am assume I should use CFLOOP
The results should look something like this.
**Category1**
Question 1
Question 2
**Category2**
Question 4
Question 5