Nedenini bilmiyorum ama benim sayfa dosyayı yüklemek için kesin bir kod yazmıştı.
i istemci tarafında ... böyle yazmıştı.
<form id="recipeform" onsubmit="return checkAll()" action="submit.php" method="post" class="niceform" enctype="multipart/form-data">
<input name="uploaded" type="file" />
Ve submit.php üzerinde ... ben böyle yazıyorum .....
$target = "newupload/";
$target = $target . basename( $_FILES['uploaded']['name']) ;
$ok=1;
if(move_uploaded_file($_FILES['uploaded']['tmp_name'], $target)){
echo "The file ". basename( $_FILES['uploaded']['name']). " has been uploaded";
}
else{
echo "Sorry, there was a problem uploading your file.";
}
simple code but then also i can't able to upload the file.. And i had made my webiste in Drupal.
Thanks in advance. www.panchjanyacorp.com