|
Posted by Dale on 02/23/06 16:06
I'm not sure I'm even thinking about this the right way, but here goes:
I have a table of users. Each one of these users may be associated
with none, one, or many records in another table I call a todo table.
table user = 'id', 'name', 'bla bla bla','todo_list'
table todo = 'id','title','other info'
Suppose user 'id=1253' has on his todo list items 756,241, and 672. I
create a string 756,241,672 and store that string in the user's
todo_list field. Then when I want to display the todo items I get the
string with a query, bust it up into an array, iterate the array and
query the todo table.
I have a gut feeling I'm making it way more complicated than need be.
But I can't think of any other way to do it
Navigation:
[Reply to this message]
|