Model
$this->title = $param ['title'];
$this->content = $param ['desc'];
$this->category = $param ['category'];
$resimler = array ();
for($i = 0; $i < $param ["resimAdet"] + 1; $i ++) {
$kaynak = $_FILES ['files' . $i] ['tmp_name'];
$imageTransform = new imageTransform ();
$resim = $_FILES ['files' . $i] ['name'];
$uzanti = substr ( $resim, strpos ( $resim, '.' ) + 1 );
$yeniAd = substr ( uniqid ( md5 ( rand () ) ), 0, 30 ) . '.' . $uzanti;
$resimler [$i]->imgName .= $yeniAd;
$hedef = "/var/www/html/files/";
$imageTransform->resize ( $kaynak, 1056, 471, $hedef . $yeniAd );
}
return $this->save ();
JS
$(document).ready(function(){
$(".dosyaEkle a").click(function(){
$("#yuklenecekResim").append('<input type="file" name="files['+$arttir+']" id="inputFile" multiple/>');
$arttir++;
$("#resimAdet").val($arttir);
});
$arttir = 1;
});