çoklu resim yükleme
<?php
$numfile=count($_FILES['inline_upload_file']['tmp_name']);
for($i=0;$i<$numfile;$i++)
{
$upload_dir = '/var/www/vhosts/lafdemligi.com/subdomains/m/resimler/';
$uzanti = pathinfo($_FILES['inline_upload_file']['name']);
$upload_path = $upload_dir . basename(substr(md5(uniqid(rand())),0,10).".".$uzanti['extension']);
$response = array();
if (move_uploaded_file($_FILES['inline_upload_file']['tmp_name'], $upload_path))
{
$info = getImageSize($upload_path);
$response['status'] = 'success';
$response['width'] = $info[0];
$response['height'] = $info[1];
$response['src'] = 'https://m.lafdemligi.com'
.$upload_path;
}
else
{
$response['status'] = 'error';
$response['msg'] = $_FILES['inline_upload_file']['error'];
}
echo json_encode($response);
}
?>
birden fazla resmi seçebiliyorum ama yüklemeye bastığımda tek resim yükleniyor sadece
nerede hata yapıyorum yardımcı olabilir misiniz?
https://www.lafdemligi.com/codes/templates/default/images/js/markitup/InlineUpload.js html yok işte hocam. https://prnt.sc/vsmx2t bu da editörün ekran görüntüsü. soldan 2.ye tıklayınca resim seçme geliyor.seçsek bile 1tanesi upload oluyor.