Hi leute,
kann mir jemand ein einfaches script geben das mir zeigt wie man einen php upload macht???
Danke schonmal,
Master X
kann mir jemand ein einfaches script geben das mir zeigt wie man einen php upload macht???
Danke schonmal,
Master X
<html>
<head>
</head>
<body>
<form enctype="multipart/form-data" action="test.php" method="post">
<input type="hidden" name="aktion" value="send">
file senden: <input name="file" type="file">
<input type="submit" value="senden">
</form>
<?php
if($aktion == "send")
{
echo "Datei: $file_name<br>";
echo "Größe: $file_size<br>";
echo "File Typ: $file_type<br>";
copy($file, $file_name) or die("Das File konnte nicht auf den Server kopiert werden!");
}
?>
</body>
</html>
Kommentar