if i have:
- tbl_1
- tbl_2
- intersection_tbl
with:
$items = $tbl_1_item->findManyToManyRowset('tbl_2', 'intersection_tbl');result is as expected but how can i add "filter" so that $items contains only rows from tbl_2 with column "public=1"? Aljosa
