Добрый день всем. Хочу в модуле вывести id категории для товара.
Помогите реализовать вывод, сейчас такой код:
$querys = $this->db->query("SELECT category_id FROM " . DB_PREFIX . "product_to_category WHERE product_id = '" . $product_info['product_id'] . "'");
$data['products'][] = array(
'product_id' => $product_info['product_id'],
'thumb' => $image,
'name' => $product_info['name'],
'description' => utf8_substr(strip_tags(html_entity_decode($product_info['description'], ENT_QUOTES, 'UTF-8')), 0, $this->config->get('config_product_description_length')) . '..',
'price' => $price,
'special' => $special,
'tax' => $tax,
'rating' => $rating,
'href' => $this->url->link('product/product', 'product_id=' . $product_info['product_id']),
'catid' => $querys
Выводит так:
Array
(
[product_id] => 50
[thumb] => http://infinifine.com/image/cache/catalog/logo-109x146.png
[name] => тест товар
[description] => тест товар..
[price] => 100р.
[special] =>
[tax] =>
[rating] => 0
[href] => http://infinifine.com/index.php?route=product/product&product_id=50
[catid] => stdClass Object
(
[num_rows] => 1
[row] => Array
(
[category_id] => 75
)
[rows] => Array
(
[0] => Array
(
[category_id] => 75
)
)
)
)
Как мне вывести чтобы в цикле было [catid] => 75 ?
Знаю что в 'catid' => Надо делать типа $this->row->category_id() Но это не помогает, ошибку дает