Aşağıdaki kodu yolunu ayarlama

1 Cevap
<?php

    if($_FILES['Filedata']['size']>=520000)
    {
    	echo "\n Sorry, Not Moved Size below 5.2kb or 5200 bytes Only\n";
    	return;
    }
    $ext = end(explode('.', strtolower($_FILES['Filedata']['name'])));

    if(move_uploaded_file($_FILES['Filedata']['tmp_name'], "./".$_FILES['Filedata']['name']))
    {
    	echo "\nfile moved Success\n";
    	return;
    }
?>

I yolu ayarladığınızda, bu işe yaramazsa ... ben tam olarak nereye dosya dizinde kurtulur şekilde yolunu ayarlamak için bilmiyorum.