Welcome Guest, Not a member yet? Register   Sign In
Multiple delete image from database and folder too
#5

(02-05-2015, 09:33 AM)egall8 Wrote: First of all, for your delete from the database, I wouldn't use a foreach statement. If you have all of the ids in an array as such:

PHP Code:
$ids = array(156910);
// I would do this:
$this->db->where_in('id'$ids);
$this->db->delete('table_name'); 

Also are you having a problem deleting multiple items from the database or multiple items from the images folder. If the problem is the database delete, the above code should help.

is there anyway to fix my problem, i just move native to codeigniter, if in nativa i always use foreach, would you make some tutorial about it, will big thanks to solve this so people who came with same problem will be easy to search in this forum, Thanks Big Grin
Reply


Messages In This Thread
RE: Multiple delete image from database and folder too - by freddy - 02-05-2015, 09:43 PM



Theme © iAndrew 2016 - Forum software by © MyBB