Codeigniter: how to track activity w/o using multiple db rows?

Posted by Kevin Brown on Stack Overflow See other posts from Stack Overflow or by Kevin Brown
Published on 2010-05-07T15:06:59Z Indexed on 2010/05/07 15:08 UTC
Read the original article Hit count: 131

Filed under:
|
|
|

I need to track the completion of tasks for users.

I started by having a row called "first_login", "profile_complete", "other_thing_complete", etc...

I'd like to combine these all into one row "activity_state".

I just don't know how to properly store data in this field, and how to retrieve it.

What kind of field should it be, and how should I read/write to it?

© Stack Overflow or respective owner

Related posts about codeigniter

Related posts about beginner