what is difference between copy() and move_uploaded_file()
I think both the functions perform same operations then whats the difference?
copy ( $_FILES['file']['tmp_name'], 
     "C:/Apache/htdocs/" . $_FILES['file']['name'] ) 
move_uploaded_file($_FILES['file']['tmp_name'], 
     "C:/Apache/htdocs/" . $_FILES['file']['name'])
 
     
     
     
    