error uploading same file in 2 different directories, this is my code, it just upload the photo to the first directory
PHP Code:$target_path = "../img/";
$dt=date("YmdHis");
$target_path = $target_path . $dt . basename( $_FILES['uploadedfile']['name']);
$target_path2= "img/" . $dt . basename( $_FILES['uploadedfile']['name']);
move_uploaded_file($_FILES['uploadedfile']['tmp_name'], $target_path);
move_uploaded_file($_FILES['uploadedfile']['tmp_name'], $target_path2);





Bookmarks