Tobias Menzel
Erfahrenes Mitglied
Ähem was ist das genau und wie mache ich so etwas?
z.B. so (test.pgp)?
PHP:
<body>
<form action = "test.php" method="post">
<input type"file" name="file1">
<input type="submit" value="Ab dafür">
</form>
<?php
if (move_uploaded_file($_FILES['file1']['tmp_name'], 'HP/'.$_FILES['file1']['name'])) {
echo "upload ok";
} else {
echo "nix da";
}
?>
</body>
Gruß
.