我想在 codeigniter 的购物车系统中显示图像。但我没有做到这一点。我是codeigniter的新手。所以我需要你的帮助。
这是我的控制器:::
class Cart extends CI_Controller {
public function add_to_cart($product_id) { // adds a product to cart
$this->load->model('cart_model');
$result = $this->cart_model->selectProductByProductId($product_id);
$insert = array(
'id' => $product_id,
'qty' => 1,
'price' => $result->product_price,
'name' => $result->product_name,
'image' => $result->product_image
);
//$this->load->library('Cart');
$this->cart->insert($insert);
redirect("cart/show_cart");
}
看法:::
<?php echo $items['image'] ?>
这在购物车视图页面中不起作用..也许我需要对购物车库进行一些更改,但我不知道我在哪里编辑或更新。请帮帮我。