why data is duplicate in phpmyadmin using move_uploaded_file function code example

Example 1: php move file

//Use the rename() function.
rename('first_location/image1.jpg', 'new_location/image1.jpg');

Example 2: php move_uploaded_file

$upload_folder = "upload/";
$file_location = $upload_folder . basename($_FILES["fileToUpload"]["name"]);

     if(isset($_FILES['fileToUpload'])){ 

        if(move_uploaded_file($_FILES['fileToUpload']['tmp_name'], $file_location)){
            
            echo 'Files has uploaded'; 
        };

     }

Tags:

Php Example