我是opencart中的biggner我的问题是我在产品表中添加了一个名为(model_choice)的字段,在路径的product.tpl页面中(catalog / view / theme / default / template / product / product.tpl)我想得到所选产品的行(model_choice)的值我已经使用$this->request->get['product_id']
获取产品ID我尝试使用
$sql = $this->db->query('SELECT model_choice
FROM '.DB_PREFIX.'product
WHERE product_id = ' . $this->request->get['product_id']);
$id = $sql ->model_choice;
答案 0 :(得分:6)
$id = $sql->row['model_choice'];
- 试试这个。
print_r($sql->rows); \\Shows all results.