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

(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.

my problem how to delete images to from folder, when i clicked all it will success delete from db but in folder images still exist, how can i do delete from images too ?
Reply


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



Theme © iAndrew 2016 - Forum software by © MyBB