$categories = array();
$categoryIds = $this->_input->filterSingle('catId', XenForo_Input::UINT, array('array' => true);
foreach ($categoryIds AS $key => $categoryId)
{
$categories[] = array(
'category_id' => $categoryId,
'display_order' => $key // 0, 1, 2, 3, 4, etc.
);
}