Codeigniter: how to track activity w/o using multiple db rows?
- by Kevin Brown
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?