drag and drop is unable to save the path into mysql database for php

drag and drop is unable to save the path into mysql database for php

Hi i am newbies here and this is my first post asking for help

can someone help me to correct this code so that i can use it.

thie is the LINK that i copy the code and the below code is copy from HERE

thank you


  1. if(move_uploaded_file($pic['tmp_name'], $upload_dir.$pic['name'])){
  2. // now insert the data in the database
  3.         
  4. $stm = "INSERT INTO images (new) VALUES (:new)";
  5.         $query = $db->prepare($stm);
  6.         $query->execute(array(':new'=>$pic['name']) 
  7.                        );
  8.         exit_status('File was uploaded successfuly!');
  9.     }