i have this two tables:
Producs:
- id
- name
- price
- image
Images
- idProd
- image
I need to insert into the second table a multiple number of entry.
For the Producs.image i use this code and work very well:
$crud->set_field_upload('image','assets/uploads/files');
but how can i do this for the multiple insert?
I need this second table for save the images of each product...
Thanks