CodeIgniter Many-to-Many Relationship Management
Can anyone point out a good many-to-many database tutorial for CodeIgniter. Just trying to work out the process of creating, and then updating a many-to-many relationship. My example uses a multi-select of values, wondering how you take care of monitoring changes on update etc. Donny Kurnia I'd like to share what I do in my application. This is basically same with my answer in this question . After user submit, and before entering to database, I will fetch the existing data in the database into an array. Example: $collection = array('111', '112', '113', '114'); (This is just for example. In