Unable to Upload file with filename with different extention in php
echo basename( $_FILES['uploadedfile']['name']);
$target_path = $target_path . basename( $_FILES['uploadedfile']['name']);
if(move_uploaded_file($_FILES['uploadedfile']['tmp_name'], $target_path)) {
// header("Location: EHP_Configuration.html");
} else{
// header("Location: EHP_Configuration.html");
echo "Notdone";
}
i have verified that on Echo it show proper filename
But move_upload give me "Notdone"
Regards