I did make some changes to my system.
The first thing I did was I made a categorylookup table.
This has two columns, SID and CID. SID is for subcategory id # and CID is for Category ID #.
I also made a category table which has three columns in it.
id, catid, and category.
I also made a subcategory table which has three columns.
id, subid, and subcategory.
CATEGORY LOOKUP
SID=>subid=>subcategory CID=>catid=>category
=> these are arrows btw not greaten then or equal too.
I guess the two stumpling blocks i have right now are how do i write the select statement because I keep getting the category repeating for every subcategory there is and i don't want that. I want it to list the category once and then all subcategories in smaller text underneath it. I want to have it do this in two columns as well so formatting it is the other issue.
You know of any examples anywhere?