Forum Moderators: coopster
i would like to be able to classify them to fall under 1, 2 or X different catagories.
in my sql i have a table for all the nessecary info for the articles, including a varchar col called 'type', and a table for the different article types, containing an id and the name of the type.
do i need a lookup table? how do i get the relationship between articles and x amount of catagories?
again, thanks
ben
coopster, jatar, you there? ;)
You might also want to consider adding an article_order column to the articles table. On a menu, for example, I often have items appear by create_date DESC by default. Other times, sorting alphabetically is appropriate, but it doesn't always give the results you want. In any case it's often nice to be able to override other methods of sorting by assigning an order that items will appear in a particular category.