The FilterData class provides a quick and simple way to create a Filter instance while scripting the Vortex.
F_AND -
This example creates a new Filter searching for all posts in MyTable having show=1 and fetches the first 100 rows matching the criteria.
$fd = new FilterData( "MyTable" ); $fd->add( "show", FilterData::EQUALS, 1 ); $trs = $fd->getFilter()->getTableRecords();