Kalma
Erfahrenes Mitglied
Hey,
ich habe mir zum ersten Mal ein Upload-Script geschrieben, was jetzt aber nicht richtig will :-\
Hier meine Scripte:
Formular:
<form action="sendband.php" method="post" enctype="multipart/form-data">
<input type="file" name="file" />
<input type="submit" />
</form>
PHP-Script
Was ist da falsch?
MfG
David
ich habe mir zum ersten Mal ein Upload-Script geschrieben, was jetzt aber nicht richtig will :-\
Hier meine Scripte:
Formular:
<form action="sendband.php" method="post" enctype="multipart/form-data">
<input type="file" name="file" />
<input type="submit" />
</form>
PHP-Script
PHP:
<?php
$file = $_POST['file'];
if($file !== "")
{
copy ("$file", "images/bands/$name.jpg");
echo "hochgeladen";
}
else
{
die("nicht hochgeladen");
}
?>
Was ist da falsch?
MfG
David