⚠ In case you've missed it, we have migrated to our new website, with a brand new forum. For more details about the migration you can read our blog post for website migration. This is an archived forum. ⚠

  •     

profile picture

Relation n_n with upload



HellKnight

HellKnight
  • profile picture
  • Member

Posted 09 October 2012 - 13:38 PM

Good day, someone tell me how to ask for multiple connection to download the




$crud->add_fields('Image');
$ crud-> set_relation_n_n ('Image', 'prods_images', 'images', 'prod_id', 'image_id', 'url');
$ crud-> set_field_upload ('Image', 'images /');

It does not work

HellKnight

HellKnight
  • profile picture
  • Member

Posted 09 October 2012 - 14:16 PM

There are some solutions, but will also describe its function updates and file uploads

$crud->callback_column('Image',array($this,'get_img'));
function get_img($value, $row)
{
return "<img style=' height: 100px; ' src='".base_url()."images/".$value."'/>";
}

HellKnight

HellKnight
  • profile picture
  • Member

Posted 10 October 2012 - 06:26 AM

up