Xymor Posted October 29, 2014 Share Posted October 29, 2014 Hi. My module renders category tree using helper form 'type' => 'categories'. How can i save selected ID in string separated by comma? Link to comment Share on other sites More sharing options...
shacker Posted November 10, 2014 Share Posted November 10, 2014 $skipman2[] = Tools::getValue('skipman'); foreach($skipman2[0] as $key => $value) $skipman .= $value.','; $skipman = trim($skipman, ","); Tools::getValue('skipman'); is the name of the element that have the categories 1 Link to comment Share on other sites More sharing options...
Recommended Posts