Advertisement
ysfcyln

Toplu Dosya

Feb 14th, 2016
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.54 KB | None | 0 0
  1. <?php
  2.             $klasor="img";
  3.             $bolumListesi = array();
  4.             @$dosya_sayi=count($_FILES['files']['name']);
  5.             for($i=0;$i<$dosya_sayi;$i++){
  6.             if(!empty($_FILES['files']['name'][$i]))
  7.                 {
  8.                 move_uploaded_file($_FILES['files']['tmp_name'][$i],$klasor."/".$_FILES['files']['name'][$i]);
  9.                 $resim_adi = $_FILES['files']['name'][$i];
  10.                 array_push($bolumListesi,$resim_adi);
  11.                 }                  
  12.             }
  13.             $resimler = implode(",",$bolumListesi);
  14.             mysqli_query($baglan,"insert into bolumler (bolumId,bolumResimler) values ('','$resimler')");
  15. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement