Çoklu dosya yüklemek için aşağıda ki kodları kullanıyorum;
<?php if (!empty($_FILES['fileGallery']["tmp_name"])) {
foreach ($_FILES["fileGallery"]["tmp_name"] as $key => $img) {
$img_title = uniqid(true);
$img_ex = $img_title . ".jpg";
$img_add = $this->product_m->createImg($img_title, $img, "images", 1130, 400, true, true, true, true);
if ($img_add) {
$add_image = $this->my_model->insert('images', array('img_name' => $img_ex, 'img_cat' => $id));
}
}
} ?>