Люди помогите разобраться пож)
Сделал два файла
Первый index.html
<html>
<script type="text/javascript">
function sendForm() {
document.test.datei.click();
}
</script>
<a href="javascript:sendForm()">FileChooser aufrufen</a><br>
<form enctype="multipart/form-data" action="up.php" method="post" name="test">
<input type="file" name="datei">
<input name="submit" type="submit" value="Загрузить" />
</form>
</html>
И второй up.php
<?php
$uploaddir = '/var/www/pic/';
$uploadfile = $uploaddir . basename($_FILES['userfile']['name']);
print "<pre>";
if (move_uploaded_file($_FILES['userfile']['tmp_name'], $uploadfile)) {
print "File is valid, and was successfully uploaded. ";
print "Here's some more debugging info:\n";
print_r($_FILES);
} else {
print "Possible file upload attack! Here's some debugging info:\n";
print "Possible file upload attack! Дополнительная отладочная информация:\n";
print_r($_FILES);
}
print "</pre>";
?>
Почему то не работает выдает всякую билеберду, где может быть ошибка?