A short example
class Post extends ActiveRecord{
var $habtm = 'tags'; // use an array if there are more than one
}
class Tag extends ActiveRecord{
var $habtm = 'posts'; // you can also use $has_and_belongs_to_many
}
Have a look at the testing models and the AkHasAndBelongsToMany tests for more examples
1 to 2 of 2