Mysql
 sql >> डेटाबेस >  >> RDS >> Mysql

एकाधिक चित्र अपलोड समस्याएं

पहली त्रुटि के लिए, त्रुटि सरणी अग्रभाग के बाहर है, इसलिए आप प्रत्येक फ़ाइल के लिए त्रुटि को साफ़ नहीं करते हैं, और सम्मिलित करने के लिए क्वेरी बाहर है यदि वह त्रुटियों की जांच करता है तो हमेशा निष्पादित किया जाता है

दूसरी त्रुटि के लिए, क्वेरी को हमेशा निष्पादित किया जाता है, आपको यह जांचना होगा कि फ़ाइल अपलोड की गई है या नहीं।

<?php

    include_once('connect.php');

    if(isset($_FILES['files'])){
        $filesErrors = 0;
        foreach($_FILES['files']['tmp_name'] as $key => $tmp_name ){
            // MOved errors inside the foreach to clear it each loop
            $errors = array();

            // Check file is uploaded
            if ($_FILES['files']['error'][$key] == UPLOAD_ERR_NO_FILE){
                // Continue with the next file
                continue; 
            }

            $file_name = $key.$_FILES['files']['name'][$key];
            $file_size = $_FILES['files']['size'][$key];
            $file_type = $_FILES['files']['type'][$key];

            if($file_type == "image/gif"){
                $sExt = ".gif";
            } elseif($file_type == "image/jpeg" || $file_type == "image/pjpeg"){
                $sExt = ".jpg";
            } elseif($file_type == "image/png" || $file_type == "image/x-png"){
                $sExt = ".png";
            }
            if (!in_array($sExt, array('.gif','.jpg','.png'))) {
                $errors[] = "Image types alowed are (.gif, .jpg, .png) only!";
            }

            $file_tmp = $_FILES['files']['tmp_name'][$key];
            $file_type = $_FILES['files']['type'][$key];
            if($file_size > 2097152){
                $errors[]='File size must be less than 2 MB';
            }    


            if(empty($errors) == true){
                $desired_dir = "user_data";
                // Execute query inside the errors check
                $query = "INSERT into offers_pics (`offer_id`,`pic_name`,`pic_type`) VALUES ('$user_id','$file_name','$file_type'); ";
                $result = mysqli_query($link,$query);

                if(is_dir($desired_dir) == false){
                    mkdir("$desired_dir", 0700);        // Create directory if it does not exist
                }
                if(is_dir("$desired_dir/".$file_name) == false){
                    move_uploaded_file($file_tmp,"$desired_dir/".$file_name);
                }else{                                  // rename the file if another one exist
                    $new_dir = "$desired_dir/".$file_name.time();
                     rename($file_tmp,$new_dir) ;               
                }
            }else{
                $filesErrors++;
                print_r($errors);
            }
        }

        if ($filesErrors == 0){
            echo 'Success';
        }
    }
?>


<form action="" method="POST" enctype="multipart/form-data">
    <input type="file" name="files[]"> <br/>
    <input type="file" name="files[]"> <br/>
    <input type="file" name="files[]"> <br/>
    <input type="file" name="files[]"> <br/>
    <input type="file" name="files[]" > <br/><br/>
    <input type="submit"/>
</form>



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. mysql में मान 6000 से शुरू करने के लिए AUTO_INCREMENT फ़ील्ड कैसे सेट करें?

  2. (1, 2) (2, 1) मैत्री परिदृश्य में पारस्परिक मित्र प्राप्त करने के तरीके क्या हैं?

  3. Java/Mysql..SQLException:एक टेबल में कम से कम 1 कॉलम होना चाहिए SQLState:42000 VendorError:1113

  4. मैं Sequelize के साथ अलग-अलग कॉलम में MySQL में ऑब्जेक्ट की सरणी स्टोर करना चाहता हूं

  5. मैसकल:नाम बदलें तालिका यदि मौजूद है