Jump to content

Как правильно заполнить массив products?


Recommended Posts

Добрый день!

подскажите, пожалуйста, как правильно заполнить массив products товрами, например, категории с id=7?
Пробую так:

function smarty_function_myprod($params, &$smarty)
   {
       global $smarty, $cookie;        
               $category = new Category(7);
       $products = $category->getProducts(6, NULL, NULL, "name", "asc");
       $smarty->assign(array("products1" => $products));

}



Но, при дебаге, массив products1 пустой:(

Link to comment
Share on other sites

×
×
  • Create New...