Codeigniter - passing multiple values to view
问题 Okay, so generally I wouldn't have a problem doing this and it would be fairly straight forward, but not so much this time. Here is the relevant code in my controller: // In order to properly build the form url, we need to include the // category and product to the view $this->data = array( 'category' => $category, 'product' => $product ); // Load the product model and get editable values from the database $this->load->model('productadmin/products_model'); $productInformation = $this-