Any ideas why this isn't working? I've used it many times before. I have a folder called 'uploads' in the same directory
$target_path = "uploads/";
$target_path = $target_path . basename( $_FILES['file']['name']);
if(! move_uploaded_file($_FILES['file']['tmp_name'], $target_path)) {
$error = 1;
}
Dosya giriş formu $_POST['file']; dosya adı doğru i echo olduğu gibi, çalışıyor gibi görünüyor
Teşekkürler