In first, sorry, i'm not very good for write in english...
I use the relation "ManyToMany" : An "User" can have several "Category", and a "Category" can have several "User".
The table for this relation is like (users_categorys) : "id", "id_user", "id_category"
I have a form for create/update an User, in this form i use several "SELECT" input for add/remove "Category". I use js for add/remove "SELECT" from the DOM and their name is like : "categories[1], categories[2], etc..." the number is dynamic (count of "SELECT")
In the controller i do this :
<code>
<?php
$myUser->categories[] = array(); // I reset all relations
foreach(Input::post('categories') as $postCategory) {
Can you create an issue for this on http://github.com/fuel/orm/issues, with a short description, and a link to this page? Then someone can have a look at it.