0

I need some help.I need to upload multiple file into folder using PHP. Here I can upload only single file. I am explaining my code below.

 <input style="padding:0;" type="file" class="filestyle form-control" data-size="lg" name="bannerimage" id="bannerimage">
<input style="padding:0;" type="file" class="filestyle form-control" data-size="lg" name="bannerimage1" id="bannerimage1">

Here is my PHP code.

<?php
 $imageName='bannerimage';
 $imagePath="uploads/";
 if ($_FILES['bannerimage']['name'] != ""){
    uploadImage($_FILES,$imageName,$imagePath,function($image){
       $newCustomerobj->image =$image['img'];
    }
 }
  public function uploadImage($files, $imageFieldName, $imageDirPath, $callback) {
        $result = array();
        //  print_r( $_FILES);exit;
        $imageName = generateRandomNumber() . '_' . $_FILES[$imageFieldName]['name'];
        // echo($_FILES[$imageFieldName]['tmp_name']);exit;
        $target_dir = $imageDirPath;
        $target_file = $target_dir . basename($imageName);
        $uploadOk = 1;
        $imageFileType = pathinfo($target_file, PATHINFO_EXTENSION);
        if (file_exists($target_file)) {
            $result['msg'] = "Sorry, file already exists.";
            $result['num'] = 0;
            $callback($result);
            $uploadOk = 0;
        }
        if ($_FILES[$imageFieldName]["size"] > 500000) {
            //  echo 'fileSize';exit;
            $result['msg'] = "Sorry, file size is large.";
            $result['num'] = 0;
            $callback($result);
            $uploadOk = 0;
        }
        if (($imageFileType != "jpg" && $imageFileType != "JPG") && $imageFileType != "png" && $imageFileType != "jpeg" && $imageFileType != "gif") {
            $result['msg'] = "Sorry, only .jpg,.jpeg,.gif and .png files are allowed.";
            $result['num'] = 0;
            $callback($result);
            $uploadOk = 0;
        }
        if ($uploadOk == 0) {
            $result['msg'] = "Sorry, Your file could not uploaded.";
            $result['num'] = 0;
            $callback($result);
        } else {
            if (move_uploaded_file($_FILES[$imageFieldName]['tmp_name'], $target_file)) {
                $result['msg'] = "Image has uploaded successfully.";
                $result['num'] = 1;
                $result['img'] = $imageName;
                $callback($result);
            } else {
                $result['msg'] = "Sorry, Your Image could not uploaded to the directory.";
                $result['num'] = 0;
                $callback($result);
            }
        }
    }
?>

Here I can only add one image but here I need to upload multiple image. Please help me to resolve this problem.

3

1 Answer 1

1

Use multiple attr

The multiple attribute is a boolean attribute.

When present, it specifies that multiple options can be selected at once.

HTML input

<input style="padding:0;" type="file" class="filestyle form-control" data-size="lg" multiple name="bannerimage[]" id="bannerimage">

Your PHP

 // set all images into array
function reArrayFiles(&$file_post)
{

    $file_ary = array();
    $file_count = count($file_post['name']);
    $file_keys = array_keys($file_post);

    for ($i = 0; $i < $file_count; $i++) {
        foreach ($file_keys as $key) {
            $file_ary[$i][$key] = $file_post[$key][$i];
        }
    }

    return $file_ary;
}


if ($_FILES['bannerimage']['name'] != "") {
    $file_ary = reArrayFiles($_FILES['bannerimage']);
    foreach ($file_ary as $file) {
        uploadImage($file, $imageName, $imagePath, function ($image) {
            $newCustomerobj->image = $image['img'];
        }
    }
}

UPDATE

uploading two separate images

<input style="padding:0;" type="file" class="filestyle form-control" data-size="lg" name="bannerimage" id="bannerimage">
<input style="padding:0;" type="file" class="filestyle form-control" data-size="lg" name="bannerimage1" id="bannerimage1">

PHP

$imageName = 'bannerimage';
$imageName2 = 'bannerimage1'; // for bannerimage1
$imagePath = "uploads/";

// uploading bannerimage
if ($_FILES['bannerimage']['name'] != "") {
    uploadImage($_FILES, $imageName, $imagePath, function ($image) {
        $newCustomerobj->image = $image['img'];
    }
 }

 // uploading bannerimage1
if ($_FILES['bannerimage1']['name'] != "") {
    uploadImage($_FILES, $imageName2, $imagePath, function ($image) {
        $newCustomerobj->image = $image['img'];
    }
 }
Sign up to request clarification or add additional context in comments.

7 Comments

I have multiple field in my view.if it will be bannerimage[] like this ,then how to identify which image is coming from which file field.
[] means you are getting multiple images and you need to loop over the array and upload each image.
Yes,But you used multiple attribute here i need to know also which image is belongs to which field if I am displaying it later.
If you want it that way just call uploadImage() twice.
Can I get like $_FILES['bannerimage']['name'] and $_FILES['bannerimage1']['name'] this in php file.
|

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.